/* ===== LUXURY DIGITAL PRINTING DESIGN SYSTEM ===== */
:root {
    --lux-black: #050505;
    --lux-charcoal: #0c0c0c;
    --lux-elevated: #121212;
    --lux-red: #ED2224;
    --lux-red-soft: #c41e20;
    --lux-red-glow: rgba(237, 34, 36, 0.45);
    --lux-gold: #D4AF37;
    --lux-silver: #C0C0C0;
    --lux-glass: rgba(255, 255, 255, 0.035);
    --lux-glass-border: rgba(255, 255, 255, 0.09);
    --lux-text: #e8e6e3;
    --lux-text-muted: #9a9690;
    --lux-font-display: 'Outfit', sans-serif;
    --lux-font-body: 'Inter', sans-serif;
    --lux-font-editorial: 'Cormorant Garamond', Georgia, serif;
    --lux-radius-lg: 28px;
    --lux-radius-xl: 40px;
    --lux-shadow-deep: 0 40px 100px rgba(0, 0, 0, 0.55);
    --lux-safe-top: max(0px, env(safe-area-inset-top));
    --lux-safe-bottom: max(0px, env(safe-area-inset-bottom));
}

/* Base Overrides for this page */
html {
    scroll-behavior: auto !important;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lux-page {
    background-color: var(--lux-black);
    background-image:
        linear-gradient(165deg, rgba(5, 5, 5, 0.97) 0%, rgba(12, 8, 8, 0.92) 45%, rgba(5, 5, 5, 0.96) 100%),
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(237, 34, 36, 0.12), transparent 55%),
        url('./assets/digital-printing01 (3).png');
    background-attachment: scroll;
    background-size: auto, auto, cover;
    background-position: center;
    color: var(--lux-text);
    font-family: var(--lux-font-body);
    overflow-x: clip;
}

@media (max-width: 900px) {
    .lux-page {
        background-attachment: scroll;
    }
}

.lux-section {
    padding: 90px 0;
    position: relative;
    min-height: 400px;
    /* Prevent layout collapse */
}

/* Background Noise Texture */
.lux-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
    z-index: 9999;
}

/* Ambient Glows */
.ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--lux-red-glow) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

/* Typography */
.lux-h1 {
    font-family: var(--lux-font-display);
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.lux-h2 {
    font-family: var(--lux-font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.lux-text-gradient {
    background: linear-gradient(115deg, #fff 0%, #f0ebe4 40%, var(--lux-red) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism */
.lux-glass-card {
    background: var(--lux-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--lux-glass-border);
    border-radius: 24px;
    padding: 40px;
    transition: var(--transition);
    will-change: transform, border-color;
}

.lux-glass-card:hover {
    border-color: rgba(237, 34, 36, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

/* Cinematic Hero Styles */
.hero-cinematic {
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-cinematic .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-showcase {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.stack-item {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.stack-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-1 {
    width: 300px;
    height: 400px;
    top: 0;
    left: 10%;
    z-index: 3;
}

.item-2 {
    width: 280px;
    height: 350px;
    bottom: 10%;
    right: 5%;
    z-index: 2;
}

.item-3 {
    width: 250px;
    height: 300px;
    top: 20%;
    right: 20%;
    z-index: 1;
}

.hero-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 120px;
    z-index: 10;
}

.badge-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: var(--lux-red);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--lux-text-muted);
}

.scroll-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--lux-red), transparent);
}

/* Button Luxury */
.btn-lux {
    background: var(--lux-red);
    box-shadow: 0 10px 30px var(--lux-red-glow);
    border: none;
}

.btn-lux:hover {
    box-shadow: 0 15px 40px var(--lux-red-glow);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-cinematic {
        height: auto;
        min-height: 100vh;
        padding-top: 100px;
        padding-bottom: 60px;
        align-items: flex-start;
    }

    .hero-cinematic .hero-content {
        padding-top: 0;
    }

    .hero-cinematic .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-showcase {
        height: 350px;
        margin-top: 30px;
    }

    .stack-item {
        position: absolute;
        width: 140px;
        height: 190px;
        top: 50%;
        left: 50%;
        margin: 0;
        transform: translate(-50%, -50%);
    }

    .item-1 {
        transform: translate(-80%, -50%) rotate(-5deg);
        z-index: 3;
    }

    .item-2 {
        transform: translate(-20%, -30%) rotate(5deg);
        z-index: 2;
    }

    .item-3 {
        transform: translate(10%, -70%) rotate(-2deg);
        z-index: 1;
    }
}

/* Hyper-Luxury Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 240px;
    gap: 20px;
}

.bento-item {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    cursor: pointer;
    text-decoration: none;
    z-index: 1;
    will-change: transform, border-color;
}

.bento-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(237, 34, 36, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.bento-item:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(237, 34, 36, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.bento-item:hover::before {
    opacity: 1;
}

.bento-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.bento-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    filter: brightness(0.5) saturate(0.8);
}

.bento-item:hover .bento-bg img {
    transform: scale(1.1) rotate(1deg);
    filter: brightness(0.6) saturate(1);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(5, 5, 5, 0.2) 40%, rgba(5, 5, 5, 0.9) 100%);
    z-index: 0;
}

.bento-content {
    position: relative;
    z-index: 2;
}

.bento-content h3 {
    font-family: var(--lux-font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.bento-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin: 0;
    max-width: 260px;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.bento-item:hover .bento-content p {
    transform: translateY(0);
    opacity: 1;
}

.bento-tag-premium {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 2;
    background: rgba(237, 34, 36, 0.9);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 6px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    box-shadow: 0 10px 20px rgba(237, 34, 36, 0.3);
}

.bento-icon-corner {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 2;
    font-size: 1.4rem;
    color: var(--lux-red);
    opacity: 0.4;
    transition: all 0.4s ease;
}

.bento-item:hover .bento-icon-corner {
    opacity: 1;
    transform: rotate(90deg) scale(1.1);
}

/* Specific Grid Layout Spans */
.bento-1 {
    grid-column: span 6;
    grid-row: span 2;
}

/* Large 2x2 */
.bento-2 {
    grid-column: span 6;
    grid-row: span 1;
}

/* Wide 2x1 */
.bento-3 {
    grid-column: span 3;
    grid-row: span 1;
}

/* Small 1x1 */
.bento-4 {
    grid-column: span 3;
    grid-row: span 1;
}

/* Small 1x1 */

/* Responsive Layout */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .bento-1 {
        grid-column: span 6;
    }

    .bento-2 {
        grid-column: span 3;
    }

    .bento-3 {
        grid-column: span 3;
    }

    .bento-4 {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 320px;
    }

    .bento-1,
    .bento-2,
    .bento-3,
    .bento-4 {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-1 {
        grid-column: span 2;
        grid-row: span 2;
    }

    .bento-2 {
        grid-column: span 2;
        grid-row: span 1;
    }

    .bento-3 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bento-4 {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-1,
    .bento-2,
    .bento-3,
    .bento-4 {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Interactive Showcase */
.horizontal-scroll-container {
    display: flex;
    gap: 40px;
    padding: 60px 40px;
    /* Added side padding for better edge spacing */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    align-items: center;
}

.showcase-item {
    flex: 0 0 450px;
    width: 450px;
    /* Explicit width */
    height: 600px;
    min-height: 600px;
    flex-shrink: 0;
    /* Prevents the right-side images from being squashed */
    scroll-snap-align: center;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-item:hover img {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.showcase-item:hover .showcase-overlay {
    opacity: 1;
}

/* Process Timeline */
.timeline-luxury {
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 4px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--lux-red), transparent);
}

.timeline-item {
    padding-left: 40px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: var(--lux-red);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--lux-red);
}

.step-num {
    font-size: 0.8rem;
    color: var(--lux-red);
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.timeline-item h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #fff;
}

.timeline-item p {
    color: var(--lux-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== LUXURY CTA SECTION ===== */
.lux-cta-section {
    position: relative;
    overflow: hidden;
}

.lux-cta-bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.lux-cta-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.lux-cta-overlay {
    position: absolute;
    inset: 0;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-luxury .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .bento-1,
    .bento-2 {
        grid-column: span 1;
    }
}

/* ===== STAGGERED PINSTRIPE SHOWCASE ===== */
.stagger-strip {
    display: flex;
    gap: 20px;
    padding: 0 40px 80px;
    align-items: flex-start;
}

.stagger-card {
    flex: 1;
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.6s ease;
    cursor: pointer;
}

/* Alternating heights create the stagger */
.stagger-high {
    height: 600px;
    margin-top: 0;
}

.stagger-low {
    height: 600px;
    margin-top: 80px;
}

.stagger-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
    display: block;
}

.stagger-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(237, 34, 36, 0.3);
}

.stagger-card:hover img {
    transform: scale(1.08);
}

/* Card Info Overlay */
.stagger-info {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(5, 5, 5, 0.95) 0%,
            rgba(5, 5, 5, 0.5) 40%,
            transparent 100%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 14px;
}

.stagger-num {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    font-family: 'Outfit', sans-serif;
    transition: color 0.4s ease;
}

.stagger-card:hover .stagger-num {
    color: rgba(237, 34, 36, 0.15);
}

.stagger-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.stagger-text p {
    font-size: 0.85rem;
    color: var(--lux-text-muted);
    margin: 0;
    line-height: 1.5;
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.stagger-card:hover .stagger-text p {
    transform: translateY(0);
    opacity: 1;
}

/* Red accent line at bottom of each card */
.stagger-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--lux-red);
    transition: width 0.5s ease;
}

.stagger-card:hover::after {
    width: 100%;
}

/* ===== PREMIUM ARCHITECTURAL GRID ===== */
.arch-grid-lux {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.arch-card-lux {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.arch-image-wrapper {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 28px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.6s ease;
}

.arch-image-wrapper::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.1) 50%, transparent 55%);
    transition: all 0.8s ease;
    pointer-events: none;
    z-index: 2;
}

.arch-card-lux:hover .arch-image-wrapper::after {
    top: 100%;
    left: 100%;
}

.arch-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
    filter: brightness(0.9);
}

.arch-card-lux:hover .arch-image-wrapper {
    transform: translateY(-12px);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8), 0 0 25px rgba(237, 34, 36, 0.2);
    border-color: rgba(237, 34, 36, 0.3);
}

.arch-card-lux:hover .arch-image-wrapper img {
    transform: scale(1.1);
    filter: brightness(1);
}

.arch-content-lux {
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.4s ease;
}

.arch-card-lux:hover .arch-content-lux {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(237, 34, 36, 0.1);
}

.arch-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.arch-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.arch-num {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--lux-red);
}

.arch-content-lux p {
    font-size: 1rem;
    color: var(--lux-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .stagger-strip {
        flex-direction: column;
        padding: 0 20px 60px;
    }

    .stagger-high,
    .stagger-low {
        height: 400px;
        margin-top: 0;
    }
}

/* --- NEW RESPONSIVE GRID CLASSES --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.arch-grid-lux {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.finish-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.timeline-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Card base styles */
.mag-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    background: var(--lux-charcoal);
}

.mag-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.mag-card:hover img {
    transform: scale(1.07);
}

/* Overlay */
.mag-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 28px;
    gap: 10px;
    transition: background 0.4s ease;
}

.mag-card:hover .mag-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(100, 0, 0, 0.3) 60%, transparent 100%);
}

.mag-overlay h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.mag-overlay p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
    max-width: 280px;
}

/* Number badge */
.mag-num {
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    color: var(--lux-red);
    font-family: var(--lux-font-display);
    background: rgba(237, 34, 36, 0.12);
    border: 1px solid rgba(237, 34, 36, 0.3);
    padding: 4px 10px;
    border-radius: 999px;
    align-self: flex-start;
    margin-bottom: 4px;
}

/* CTA link */
.mag-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--lux-red);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: gap 0.3s ease;
}

.mag-link:hover {
    gap: 12px;
}

/* Medium cards inside mag-col */
.mag-medium {
    flex: 1;
    min-height: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .mag-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .mag-large {
        grid-column: 1 / 3;
        height: 360px;
    }

    .mag-col {
        grid-column: 1 / 3;
        grid-row: auto;
        flex-direction: row;
        height: 280px;
    }

    .mag-small {
        grid-column: span 1;
        height: 220px;
    }
}

@media (max-width: 640px) {
    .mag-grid {
        grid-template-columns: 1fr;
    }

    .mag-large,
    .mag-col,
    .mag-small {
        grid-column: 1 / 2;
        height: 280px;
    }

    .mag-col {
        flex-direction: column;
        height: auto;
    }

    .mag-medium {
        height: 250px;
    }
}

.mag-link:hover {
    gap: 12px;
}

/* Medium cards inside mag-col */
.mag-medium {
    flex: 1;
    min-height: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .mag-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .mag-large {
        grid-column: 1 / 3;
        height: 360px;
    }

    .mag-col {
        grid-column: 1 / 3;
        grid-row: auto;
        flex-direction: row;
        height: 280px;
    }

    .mag-small {
        grid-column: span 1;
        height: 220px;
    }
}

@media (max-width: 640px) {
    .mag-grid {
        grid-template-columns: 1fr;
    }

    .mag-large,
    .mag-col,
    .mag-small {
        grid-column: 1 / 2;
        height: 280px;
    }

    .mag-col {
        flex-direction: column;
        height: auto;
    }

    .mag-medium {
        height: 250px;
    }
}

/* ===== FINAL RESPONSIVE OVERRIDES ===== */
@media (max-width: 1100px) {
    .finish-grid {
        gap: 40px;
    }

    .arch-grid-lux {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .hero-cinematic .container {
        grid-template-columns: 1fr;
        text-align: center;
        height: auto;
        padding-top: 100px;
    }

    .hero-showcase {
        height: 450px;
        margin-top: 40px;
    }

    .visual-stack {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .stack-item {
        position: relative;
        width: 180px;
        height: 240px;
        margin: 0 -30px;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: rotate(0deg) !important;
    }

    .item-2 {
        transform: translateY(30px) !important;
    }

    .item-3 {
        transform: translateY(-20px) !important;
    }

    .about-grid,
    .finish-grid,
    .timeline-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .arch-grid-lux {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-visual img {
        height: 400px !important;
    }

    .lux-h1 {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .lux-section {
        padding: 50px 0 !important;
    }

    .tech-mobile-image {
        display: block !important;
    }

    .digital-about-visual {
        display: none !important;
    }

    .arch-grid-lux {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .lux-glass-card,
    .digital-stat-card {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }

    .finish-visual-lux {
        margin-top: 40px;
    }

    .finish-visual-lux .lux-glass-card {
        right: 10px !important;
        bottom: -15px !important;
        padding: 20px !important;
    }

    .timeline-visual {
        order: -1;
        margin-bottom: 40px;
    }

    .lux-h1 {
        font-size: 3rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .stack-item {
        width: 140px;
        height: 190px;
        margin: 0 -20px;
    }

    .hero-badge {
        width: 80px;
        height: 80px;
        bottom: -20px;
    }
}

@media (max-width: 480px) {
    .lux-h1 {
        font-size: 2.5rem;
    }

    .stack-item {
        width: 110px;
        height: 150px;
    }
}

/* ===== LUXURY FINISHING REDESIGN ===== */
.luxury-finish-showcase {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.section-desc {
    color: var(--lux-text-muted);
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 30px 0 50px;
    max-width: 540px;
}

.feature-stagger {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-mini {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px !important;
    border-radius: 20px !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-mini:hover {
    transform: translateX(15px);
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: var(--lux-red) !important;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(237, 34, 36, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lux-red);
    font-size: 1.6rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.feature-mini:hover .feature-icon {
    background: var(--lux-red);
    color: #fff;
    transform: scale(1.1);
}

.feature-txt h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.feature-txt p {
    font-size: 0.9rem;
    color: var(--lux-text-muted);
    margin: 0;
}

.accent-border {
    border-color: rgba(237, 34, 36, 0.3) !important;
    background: rgba(237, 34, 36, 0.04) !important;
}

.finish-visual-container {
    position: relative;
    padding: 20px;
}

.visual-reveal-wrapper {
    position: relative;
    z-index: 1;
}

.visual-border-box {
    position: absolute;
    inset: -10px;
    border: 1px solid var(--lux-red);
    opacity: 0.2;
    border-radius: 45px;
    z-index: -1;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.finish-visual-container:hover .visual-border-box {
    inset: -25px;
    opacity: 0.4;
}

.main-finish-img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7);
    display: block;
    transition: transform 0.8s ease;
}

.finish-visual-container:hover .main-finish-img {
    transform: scale(1.02);
}

.stat-badge-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--lux-glass-border);
    padding: 30px 40px;
    border-radius: 28px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    z-index: 2;
    transition: all 0.5s ease;
}

.finish-visual-container:hover .stat-badge-float {
    transform: translateY(-10px) translateX(-10px);
    border-color: var(--lux-red);
}

.badge-val {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    display: block;
    line-height: 1;
    font-family: var(--lux-font-display);
}

.badge-lbl {
    font-size: 0.8rem;
    color: var(--lux-red);
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 8px;
    display: block;
}

@media (max-width: 1200px) {
    .luxury-finish-showcase {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .luxury-finish-showcase {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .finish-info {
        order: 2;
    }

    .finish-visual-container {
        order: 1;
        max-width: 600px;
        margin: 0 auto;
    }

    .section-desc {
        max-width: 100%;
    }
}

.bento-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 40px;
}

@media (max-width: 992px) {
    .bento-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* Mobile hero refinements (flattened — nested @media is invalid in legacy parsers) */
@media (max-width: 768px) {
    .digital-printing-premium .hero-cinematic {
        height: auto;
        min-height: 100svh;
        min-height: 100vh;
        padding-top: calc(100px + var(--lux-safe-top));
        padding-bottom: calc(48px + var(--lux-safe-bottom));
        align-items: flex-start;
    }

    .digital-printing-premium .hero-desc {
        text-align: center;
        padding: 0 4px;
        margin-bottom: 28px !important;
        max-width: 36rem;
        margin-left: auto;
        margin-right: auto;
    }

    .digital-printing-premium .header-btns {
        display: flex;
        flex-direction: column;
        gap: 24px !important;
        align-items: stretch;
        width: 100%;
        max-width: 22rem;
        margin-left: auto;
        margin-right: auto;
    }

    .digital-printing-premium .header-btns .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* ===================================================
   PRINT SERVICES SECTION — Industry-Authentic Design
   =================================================== */

.print-services-section {
    background: var(--lux-black);
    padding-bottom: 140px;
}

/* ── Header ── */
.print-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 70px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
}

.print-header-left .lux-h2 {
    margin-bottom: 0;
}

.print-header-right {
    max-width: 420px;
    text-align: right;
}

.print-header-right p {
    color: var(--lux-text-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin: 0;
}

/* Registration Mark Decoration */
.print-reg-marks {
    position: absolute;
    bottom: -12px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.reg-mark {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid rgba(237, 34, 36, 0.4);
    position: relative;
    background: var(--lux-black);
}

.reg-mark::before,
.reg-mark::after {
    content: '';
    position: absolute;
    background: rgba(237, 34, 36, 0.4);
}

.reg-mark::before {
    width: 1px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.reg-mark::after {
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* ── Services Grid ── */
.print-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    grid-auto-rows: 1fr;
}

/* ── Base Card ── */
.ps-card {
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
        border-color 0.4s ease,
        box-shadow 0.5s ease;
    position: relative;
}

.ps-card:hover {
    transform: translateY(-6px);
    border-color: rgba(237, 34, 36, 0.35);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(237, 34, 36, 0.1);
}

/* Red left-bar accent on hover */
.ps-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 3px;
    background: var(--lux-red);
    border-radius: 0 3px 3px 0;
    opacity: 0;
    transition: opacity 0.4s ease, top 0.4s ease, height 0.4s ease;
}

.ps-card:hover::after {
    opacity: 1;
    top: 10%;
    height: 80%;
}

/* ── Card Image ── */
.ps-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.ps-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.8) saturate(0.85);
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1),
        filter 0.5s ease;
}

.ps-card:hover .ps-card-img img {
    transform: scale(1.07);
    filter: brightness(0.95) saturate(1);
}

/* ── Card Body ── */
.ps-card-body {
    padding: 24px 26px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ps-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.ps-service-num {
    font-family: var(--lux-font-display);
    font-size: 0.7rem;
    font-weight: 900;
    color: var(--lux-red);
    letter-spacing: 0.25em;
    opacity: 0.8;
}

/* ── Badges ── */
.ps-badge {
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(237, 34, 36, 0.12);
    color: var(--lux-red);
    border: 1px solid rgba(237, 34, 36, 0.25);
}

.ps-badge--dark {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

.ps-badge--gold {
    background: rgba(212, 175, 55, 0.1);
    color: var(--lux-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* ── Card Title ── */
.ps-card-title {
    font-family: var(--lux-font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

/* ── Card Description ── */
.ps-card-desc {
    font-size: 0.85rem;
    color: var(--lux-text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
}

/* ── Specs List ── */
.ps-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ps-specs li {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.02em;
}

.ps-spec-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--lux-red);
    flex-shrink: 0;
    opacity: 0.7;
}

.ps-specs--row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 16px;
}

/* ── Large Card (2-col span) ── */
.ps-card--large {
    grid-column: span 2;
}

.ps-card--large .ps-card-img {
    height: 260px;
}

.ps-card--large .ps-card-title {
    font-size: 1.85rem;
}

/* ── Feature Card (3-col span) ── */
.ps-card--feature {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex-direction: unset;
}

.ps-card--feature .ps-card-img {
    height: 100%;
    min-height: 260px;
}

.ps-card--feature .ps-card-body {
    padding: 32px 36px;
    justify-content: center;
}

.ps-card--feature .ps-card-title {
    font-size: 2rem;
    margin-bottom: 14px;
}

/* ── CTA Card ── */
.ps-card--cta {
    background: linear-gradient(145deg, #110505 0%, #1a0808 50%, #0d0d0d 100%);
    border-color: rgba(237, 34, 36, 0.15);
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    min-height: 240px;
}

.ps-cta-inner {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.ps-cta-ink-marks {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
}

.ink-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    opacity: 0.7;
}

.ink-c {
    background: #00b4d8;
}

.ink-m {
    background: #e91e8c;
}

.ink-y {
    background: #f9c22e;
}

.ink-k {
    background: #2a2a2a;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.ps-cta-sub {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 0;
}

.ps-cta-title {
    font-family: var(--lux-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
}

.ps-cta-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 12px 22px;
    background: var(--lux-red);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 10px;
    align-self: flex-start;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0 8px 24px rgba(237, 34, 36, 0.3);
}

.ps-cta-btn:hover {
    background: #ff3335;
    box-shadow: 0 12px 32px rgba(237, 34, 36, 0.5);
    transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 1200px) {
    .ps-card--feature {
        grid-column: span 4;
    }

    .ps-card--feature .ps-card-img {
        min-height: 200px;
    }
}

@media (max-width: 992px) {
    .print-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ps-card--large,
    .ps-card--feature {
        grid-column: span 2;
    }

    .ps-card--feature {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }

    .ps-card--feature .ps-card-img {
        height: 220px;
    }

    .print-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .print-header-right {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .print-services-grid {
        grid-template-columns: 1fr;
    }

    .ps-card--large,
    .ps-card--feature {
        grid-column: span 1;
    }

    .ps-card--large .ps-card-img {
        height: 200px;
    }
}

/* ============================================================
   DIGITAL PRINTING — Premium page layer & mobile polish
   ============================================================ */

.digital-printing-premium .section-tag {
    display: inline-block;
    letter-spacing: 0.28em;
    font-size: 0.68rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 1.25rem;
}

.digital-printing-premium .lux-h1--editorial {
    font-family: var(--lux-font-editorial);
    font-weight: 600;
    text-transform: none;
    font-size: clamp(3rem, 10vw, 6.25rem);
    letter-spacing: -0.03em;
    line-height: 0.92;
    margin-bottom: 1.5rem;
}

.digital-printing-premium .lux-h2--editorial {
    font-family: var(--lux-font-editorial);
    font-weight: 600;
    text-transform: none;
    font-size: clamp(2.25rem, 5.5vw, 3.75rem);
    letter-spacing: -0.02em;
    line-height: 1.05;
}

.digital-printing-premium .print-section-header .lux-h2--editorial,
.digital-printing-premium .section-header .lux-h2--editorial {
    font-size: clamp(1.85rem, 4.2vw, 2.85rem);
}

.digital-printing-premium .lux-h2--finish {
    font-family: var(--lux-font-editorial);
    font-weight: 600;
    text-transform: none;
    font-size: clamp(2.25rem, 4.5vw, 3.35rem);
    margin-bottom: 1.25rem;
    line-height: 1.08;
}

.digital-printing-premium .hero-desc {
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    line-height: 1.75;
    color: var(--lux-text-muted);
    max-width: 32rem;
}

.digital-printing-premium .hero-premium__frame {
    pointer-events: none;
    position: absolute;
    inset: clamp(12px, 3vw, 28px);
    border-radius: clamp(20px, 3vw, 36px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 1;
    opacity: 0.85;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.digital-printing-premium .hero-cinematic .container {
    position: relative;
    z-index: 2;
}

.ambient-glow--tl {
    top: -12%;
    left: -8%;
}

.ambient-glow--br {
    bottom: -22%;
    right: -12%;
    opacity: 0.28;
}

.digital-printing-premium .hero-cinematic {
    position: relative;
    padding-top: env(safe-area-inset-top);
}

.digital-printing-premium .hero-scroll-indicator {
    z-index: 3;
}

.digital-printing-premium .print-services-section {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, var(--lux-black) 0%, #080808 100%);
}

.lux-section--charcoal {
    background: linear-gradient(180deg, var(--lux-charcoal) 0%, #0a0a0a 100%);
}

.digital-about-img {
    width: 100%;
    height: clamp(280px, 55vw, 500px);
    object-fit: cover;
    border-radius: var(--lux-radius-lg);
    box-shadow: var(--lux-shadow-deep);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.digital-lead {
    margin-bottom: 2rem;
    color: var(--lux-text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 34rem;
}

.lux-progress {
    margin-bottom: 1.5rem;
}

.lux-progress__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.82);
}

.lux-progress__track {
    height: 5px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.lux-progress__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--lux-red-soft), var(--lux-red));
    box-shadow: 0 0 18px var(--lux-red-glow);
    border-radius: inherit;
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.lux-progress__fill--full {
    width: 100%;
}

.lux-progress__fill--90 {
    width: 90%;
}

.digital-stats-grid {
    margin-top: 2.25rem;
}

.digital-stat-card {
    padding: 1.35rem 1.25rem !important;
    border-radius: 18px !important;
    text-align: center;
}

.digital-stat-card__value {
    color: var(--lux-red);
    margin: 0 0 0.35rem;
    font-family: var(--lux-font-display);
    font-size: 1.5rem;
    font-weight: 800;
}

.digital-stat-card__label {
    margin: 0;
    font-size: 0.82rem;
    color: var(--lux-text-muted);
}

.digital-showcase-section {
    padding-bottom: clamp(5rem, 12vw, 8.75rem);
}

.digital-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: clamp(16px, 4vw, 24px);
    padding-right: clamp(16px, 4vw, 24px);
}

.digital-showcase-header {
    margin-bottom: clamp(3rem, 8vw, 5rem);
    text-align: center;
}

.digital-showcase-lead {
    color: var(--lux-text-muted);
    max-width: 36rem;
    margin: 1.25rem auto 0;
    line-height: 1.8;
    font-size: 1.05rem;
}

.digital-finishing-section {
    background: var(--lux-black);
    padding-top: clamp(5rem, 10vw, 8.75rem);
    padding-bottom: clamp(5rem, 10vw, 8.75rem);
    overflow: hidden;
    position: relative;
}

.digital-timeline-img {
    border-radius: var(--lux-radius-lg);
    box-shadow: var(--lux-shadow-deep);
    width: 100%;
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.digital-final-cta {
    text-align: center;
    padding: clamp(5.5rem, 14vw, 10rem) clamp(1.25rem, 5vw, 2rem);
    position: relative;
}

.digital-cta-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.digital-cta-overlay {
    background: linear-gradient(to top, rgba(8, 8, 8, 0.98) 0%, rgba(8, 8, 8, 0.55) 55%, rgba(8, 8, 8, 0.35) 100%);
}

.digital-cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 44rem;
    margin: 0 auto;
}

.digital-cta-title {
    line-height: 1.08;
    margin-bottom: 1rem;
    text-transform: none;
    font-family: var(--lux-font-editorial);
    font-weight: 600;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
}

.digital-cta-copy {
    color: var(--lux-text-muted);
    font-size: clamp(1.05rem, 2.5vw, 1.25rem);
    margin-bottom: 2.5rem;
    line-height: 1.65;
}

.digital-cta-btn {
    padding: 1rem 2.75rem;
    font-size: 1.05rem;
    border-radius: 14px;
    min-width: min(100%, 260px);
}

.footer-logo--light {
    filter: brightness(0) invert(1);
}

.digital-footer-phone {
    margin-top: 0.65rem;
}

.footer-bottom-lux {
    margin-top: clamp(3rem, 8vw, 5rem);
    padding: 1.25rem 0 2.5rem;
    border-top: 1px solid var(--lux-glass-border);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-lux__copy {
    font-size: 0.8rem;
    color: var(--lux-text-muted);
    margin: 0;
    text-align: center;
}

@media (max-width: 768px) {
    .digital-printing-premium .stat-badge-float {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 1.25rem auto 0;
        padding: 1.25rem 1.75rem;
    }

    .digital-printing-premium .finish-visual-container {
        padding: 12px;
    }

    .digital-printing-premium .arch-image-wrapper {
        height: clamp(260px, 70vw, 380px);
    }

    .digital-printing-premium .hero-showcase {
        min-height: 0;
    }
}

@media (max-width: 480px) {
    .digital-printing-premium .section-tag {
        letter-spacing: 0.18em;
        font-size: 0.6rem;
        padding: 0.45rem 0.75rem;
    }

    .digital-printing-premium .lux-h1--editorial {
        font-size: clamp(2.35rem, 11vw, 3.2rem);
    }

    .digital-printing-premium .hero-badge svg {
        width: 88px;
        height: 88px;
    }
}

}

@media (prefers-reduced-motion: reduce) {

    .digital-printing-premium .stack-item,
    .digital-printing-premium .ps-card,
    .digital-printing-premium .arch-card-lux {
        transition: none !important;
    }
}

/* =============================================
   DP STUDIO EDITORIAL GRID — "What We Print"
   ============================================= */

/* ── Section wrapper ── */
.dp-print-section {
    background: var(--lux-black);
    position: relative;
    overflow: hidden;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(237, 34, 36, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(237, 34, 36, 0.03) 0%, transparent 40%);
}

/* Ghost background text */
.dp-print-ghost {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--lux-font-display);
    font-size: clamp(10rem, 28vw, 22rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.025);
    letter-spacing: -0.05em;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.dp-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
    z-index: 0;
    opacity: 0.5;
}

/* ── Centered Editorial Header ── */
.dp-print-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}

.dp-header-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 28px;
}

.dp-header-rule {
    flex: 0 0 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--lux-red));
    border-radius: 2px;
}

.dp-header-rule--rev {
    background: linear-gradient(to left, transparent, var(--lux-red));
}

.dp-header-title {
    font-family: var(--lux-font-editorial);
    font-size: clamp(3rem, 7vw, 5.2rem);
    font-weight: 500; /* Serif looks better at medium weight */
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
    margin: 0 0 28px;
    text-transform: none;
}

.dp-header-title em {
    font-style: italic;
    font-family: var(--lux-font-editorial);
    background: linear-gradient(135deg, #fff 0%, var(--lux-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 400;
    padding-right: 0.1em; /* Prevent clipping */
}

.dp-header-desc {
    max-width: 500px;
    margin: 0 auto 36px;
    color: var(--lux-text-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.dp-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--lux-font-display);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    background: rgba(237, 34, 36, 0.1);
    border: 1px solid rgba(237, 34, 36, 0.35);
    padding: 14px 32px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.dp-header-cta:hover {
    background: var(--lux-red);
    border-color: var(--lux-red);
    gap: 16px;
    box-shadow: 0 14px 40px rgba(237, 34, 36, 0.45);
}

/* ── Visual Image Cards ── */
.dp-visual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.dp-visual-card {
    position: relative;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #000;
}

.dp-visual-img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.dp-visual-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    filter: brightness(0.7) contrast(1.1);
}

.dp-visual-card:hover .dp-visual-img img {
    transform: scale(1.1);
    filter: brightness(0.8) contrast(1.1);
}

.dp-visual-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
    z-index: 1;
    transition: background 0.4s ease;
}

.dp-visual-card:hover .dp-visual-content {
    background: linear-gradient(to top, rgba(237, 34, 36, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.dp-visual-tag {
    font-family: var(--lux-font-display);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lux-red);
    margin-bottom: 12px;
    display: block;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.5s ease;
}

.dp-visual-card:hover .dp-visual-tag {
    transform: translateY(0);
    opacity: 1;
}

.dp-visual-content h3 {
    font-family: var(--lux-font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.dp-visual-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
    max-width: 280px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.dp-visual-card:hover .dp-visual-content p {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 992px) {
    .dp-visual-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .dp-visual-grid {
        grid-template-columns: 1fr;
    }
    
    .dp-visual-card {
        height: 380px;
    }
}

/* ── Decorative Divider ── */
.dp-grid-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 60px 0 80px;
    position: relative;
    z-index: 1;
}

.dp-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(237, 34, 36, 0.4), transparent);
}

.dp-divider-ornament {
    flex-shrink: 0;
    opacity: 0.8;
    animation: flourishPulse 3s infinite ease-in-out;
}

/* ── Studio Card Grid ── */
.dp-studio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

/* ── Base Card ── */
.dp-studio-card {
    background: #0e0e0e;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: all 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    text-decoration: none;
}

.dp-studio-card:hover {
    border-color: rgba(237, 34, 36, 0.45);
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(237, 34, 36, 0.15);
}

/* ── Featured Card — spans 2 cols, horizontal layout ── */
.dp-studio-card--featured {
    grid-column: span 2;
    flex-direction: row;
}

.dp-studio-card--featured .dp-studio-card__image {
    width: 54%;
    flex-shrink: 0;
    height: auto;
}

.dp-studio-card--featured .dp-studio-card__body {
    padding: 48px 44px;
    justify-content: center;
}

.dp-studio-card--featured .dp-studio-card__title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
}

/* ── Image ── */
.dp-studio-card__image {
    position: relative;
    height: 250px;
    overflow: hidden;
    flex-shrink: 0;
}

.dp-studio-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    filter: brightness(0.88) saturate(0.85);
}

.dp-studio-card:hover .dp-studio-card__image img {
    transform: scale(1.08);
    filter: brightness(1) saturate(1);
}

/* Image bottom fade into card body */
.dp-studio-card__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #0e0e0e);
    pointer-events: none;
}

.dp-studio-card--featured .dp-studio-card__image::after {
    bottom: 0;
    top: 0;
    right: 0;
    left: auto;
    width: 80px;
    height: 100%;
    background: linear-gradient(to right, transparent, #0e0e0e);
}

/* ── Number Badge ── */
.dp-studio-card__badge {
    position: absolute;
    top: 18px;
    left: 18px;
    font-family: var(--lux-font-display);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    color: #fff;
    background: linear-gradient(135deg, var(--lux-red) 0%, #8b0000 100%);
    padding: 5px 13px;
    border-radius: 50px;
    z-index: 2;
    box-shadow: 0 4px 14px rgba(237, 34, 36, 0.45);
}

/* ── Card Body ── */
.dp-studio-card__body {
    padding: 26px 28px 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ── Title ── */
.dp-studio-card__title {
    font-family: var(--lux-font-display);
    font-size: clamp(1.35rem, 2vw, 1.65rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 0;
    transition: color 0.3s ease;
}

.dp-studio-card:hover .dp-studio-card__title {
    color: #f0ebe4;
}

/* ── Description ── */
.dp-studio-card__desc {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--lux-text-muted);
    margin: 0;
    flex: 1;
}

/* ── CTA Link ── */
.dp-studio-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--lux-font-display);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--lux-red);
    text-decoration: none;
    margin-top: 6px;
    transition: gap 0.3s ease, color 0.3s ease;
    width: fit-content;
}

.dp-studio-card__link span {
    transition: transform 0.3s ease;
    display: inline-block;
}

.dp-studio-card:hover .dp-studio-card__link {
    gap: 14px;
    color: #fff;
}

.dp-studio-card:hover .dp-studio-card__link span {
    transform: translateX(4px);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .dp-studio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dp-studio-card--featured {
        grid-column: span 2;
        flex-direction: column;
    }

    .dp-studio-card--featured .dp-studio-card__image {
        width: 100%;
        height: 280px;
    }

    .dp-studio-card--featured .dp-studio-card__image::after {
        bottom: 0;
        top: auto;
        left: 0;
        right: 0;
        width: 100%;
        height: 80px;
        background: linear-gradient(to bottom, transparent, #0e0e0e);
    }

    .dp-studio-card--featured .dp-studio-card__body {
        padding: 32px;
    }
}

@media (max-width: 680px) {
    .dp-studio-grid {
        grid-template-columns: 1fr;
    }

    .dp-studio-card--featured {
        grid-column: span 1;
    }

    .dp-studio-card__image {
        height: 230px;
    }

    .dp-header-title {
        font-size: clamp(2.8rem, 12vw, 4.5rem);
    }

    /* Always show desc on mobile */
    .dp-studio-card__desc {
        opacity: 1;
    }
}

/* ── Corporate Gifting Section ── */
.dp-gifting-section {
    background: var(--lux-black);
    position: relative;
    overflow: hidden;
}

.dp-gifting-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.dp-gifting-visual {
    position: relative;
}

.dp-gift-composition {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dp-gift-main {
    width: 80%;
    height: 450px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--lux-shadow-deep);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: rotate(-3deg);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.dp-gift-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dp-gift-float {
    position: absolute;
    bottom: 20px;
    right: 0;
    width: 280px;
    height: 350px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transform: rotate(5deg) translateY(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.dp-gift-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dp-gift-badge {
    position: absolute;
    top: 40px;
    left: -20px;
    background: var(--lux-red);
    color: #fff;
    padding: 12px 24px;
    border-radius: 99px;
    font-family: var(--lux-font-display);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(237, 34, 36, 0.3);
    z-index: 3;
}

.dp-gift-composition:hover .dp-gift-main {
    transform: rotate(0deg) scale(1.02);
}

.dp-gift-composition:hover .dp-gift-float {
    transform: rotate(0deg) translateY(0);
}

.dp-gift-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.dp-gift-feat {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.dp-feat-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(237, 34, 36, 0.1);
    border: 1px solid rgba(237, 34, 36, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lux-red);
    font-family: var(--lux-font-display);
    font-weight: 800;
    font-size: 0.9rem;
}

.dp-feat-txt h4 {
    font-family: var(--lux-font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.dp-feat-txt p {
    font-size: 0.9rem;
    color: var(--lux-text-muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .dp-gifting-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .dp-gift-composition {
        height: 450px;
    }
    
    .dp-gift-main {
        width: 70%;
        height: 380px;
    }
    
    .dp-gift-float {
        width: 220px;
        height: 280px;
    }
    
    .dp-gift-feat {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .dp-gift-main {
        width: 85%;
        transform: none;
    }
    
    .dp-gift-float {
        display: none;
    }
    
    .dp-gift-badge {
        left: 10px;
    }
}
