    /* ============================================================
       LANDING PAGE — Gold Museum v2.0
       ============================================================ */

    /* ── Hero Section ── */
    .hero {
        min-height: 80vh;
        display: flex;
        align-items: center;
        justify-content: flex-start; /* Better for mobile-first left align */
        padding: 60px 0 80px;
        text-align: left;
        position: relative;
    }

    @media (min-width: 768px) {
        .hero { padding: 100px 0 120px; min-height: 85vh; text-align: center; justify-content: center; }
    }

    .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 18px;
        border-radius: 50px;
        font-size: 0.6rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--pm-gold-light);
        background: var(--pm-gold-dim);
        border: 1px solid rgba(212, 168, 67, 0.2);
        margin-bottom: 28px;
        animation: fadeInDown 0.8s ease-out;
    }

    @media (min-width: 768px) {
        .hero-eyebrow { font-size: 0.65rem; margin-bottom: 32px; }
    }

    @keyframes fadeInDown {
        from { opacity: 0; transform: translateY(-20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .hero-title {
        font-size: clamp(2rem, 7vw, 4.5rem);
        font-weight: 900;
        line-height: 1.05;
        letter-spacing: -0.04em;
        color: var(--pm-text);
        margin-bottom: 20px;
        max-width: 800px;
        margin-left: 0;
        margin-right: auto;
        animation: fadeInUp 0.9s ease-out 0.15s both;
    }

    @media (min-width: 768px) {
        .hero-title { margin-left: auto; margin-right: auto; }
    }

    .hero-title .accent {
        background: linear-gradient(135deg, var(--pm-gold-light), var(--pm-gold));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-subtitle {
        font-size: clamp(0.82rem, 1.8vw, 1.05rem);
        color: var(--pm-text-dim);
        max-width: 520px;
        margin: 0 0 40px;
        line-height: 1.7;
        animation: fadeInUp 0.9s ease-out 0.3s both;
    }

    @media (min-width: 768px) {
        .hero-subtitle { margin: 0 auto 40px; }
    }

    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .hero-scroll-hint {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        color: var(--pm-text-ghost);
        font-size: 0.6rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        animation: fadeInUp 0.9s ease-out 0.5s both;
    }

    .hero-scroll-hint i {
        font-size: 1.2rem;
        color: var(--pm-gold);
        animation: bounce 2s ease-in-out infinite;
    }

    @keyframes bounce {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(8px); }
    }

    /* ── Book Catalog Carousel (inside hero) ── */
    .catalog-inline {
        margin-top: 40px;
        margin-bottom: 36px;
        overflow: hidden;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }

    @media (min-width: 768px) {
        .catalog-inline { margin-top: 56px; margin-bottom: 48px; }
    }

    .catalog-track-wrapper {
        position: relative;
    }

    /* Edge fade masks */
    .catalog-track-wrapper::before,
    .catalog-track-wrapper::after {
        content: '';
        position: absolute;
        top: 0; bottom: 0;
        width: 80px;
        z-index: 2;
        pointer-events: none;
    }
    .catalog-track-wrapper::before {
        left: 0;
        background: linear-gradient(to right, var(--pm-bg), transparent);
    }
    .catalog-track-wrapper::after {
        right: 0;
        background: linear-gradient(to left, var(--pm-bg), transparent);
    }

    .catalog-track {
        display: flex;
        gap: 20px;
        width: max-content;
        animation: catalogScroll 20s linear infinite;
    }

    .catalog-track:hover {
        animation-play-state: paused;
    }

    @keyframes catalogScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    .book-card {
        flex-shrink: 0;
        width: 160px;
        perspective: 600px;
        cursor: pointer;
    }

    @media (min-width: 768px) {
        .book-card { width: 200px; }
    }

    .book-inner {
        position: relative;
        border-radius: 4px;
        overflow: hidden;
        background: var(--pm-bg-elevated);
        border: none;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        transform-style: preserve-3d;
        box-shadow:
            4px 4px 12px rgba(0, 0, 0, 0.5),
            1px 1px 3px rgba(0, 0, 0, 0.3);
    }

    /* Realistic page edges (right side) */
    .book-inner::after {
        content: '';
        position: absolute;
        right: 0; top: 3px; bottom: 3px;
        width: 6px;
        background: repeating-linear-gradient(
            to bottom,
            #e8e0d0 0px, #d4cbb8 1px, #f0e8d8 1px, #ebe3d3 2px
        );
        z-index: 3;
        border-radius: 0 2px 2px 0;
        box-shadow: inset -2px 0 3px rgba(0, 0, 0, 0.15);
    }

    /* Book spine (left side) */
    .book-inner::before {
        content: '';
        position: absolute;
        left: 0; top: 0; bottom: 0;
        width: 8px;
        background: linear-gradient(to right,
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.1) 40%,
            rgba(255, 255, 255, 0.05) 60%,
            transparent
        );
        z-index: 4;
    }

    .book-card:hover .book-inner {
        transform: rotateY(-5deg) translateY(-6px) scale(1.04);
        box-shadow:
            14px 14px 40px rgba(0, 0, 0, 0.6),
            6px 6px 16px rgba(0, 0, 0, 0.4),
            0 0 30px rgba(212, 168, 67, 0.08);
    }

    .book-cover {
        width: 100%;
        aspect-ratio: 3 / 4;
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .book-cover::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(8, 9, 14, 0.88) 0%, rgba(8, 9, 14, 0.05) 55%, transparent);
    }

    .book-info {
        position: absolute;
        bottom: 0; left: 0; right: 0;
        padding: 12px;
        z-index: 2;
    }

    .book-edition {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 2px 8px;
        border-radius: 50px;
        font-size: 0.48rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        background: var(--pm-gold-dim);
        color: var(--pm-gold-light);
        border: none;
        margin-bottom: 6px;
    }

    .book-title {
        font-size: 0.72rem;
        font-weight: 700;
        color: var(--pm-text);
        line-height: 1.3;
        margin-bottom: 3px;
    }

    @media (min-width: 768px) { .book-title { font-size: 0.78rem; } }

    .book-year {
        font-size: 0.58rem;
        color: var(--pm-text-ghost);
        font-weight: 500;
    }

    /* ── 3D Flipbook Modal ── */
    .pdf-modal-overlay {
        position: fixed;
        inset: 0;
        z-index: 9999;
        background: rgba(0, 0, 0, 0.92);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.35s ease;
    }
    .pdf-modal-overlay.active {
        display: flex;
        opacity: 1;
    }

    .flipbook-header {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 16px;
        position: absolute;
        top: 0; left: 0; right: 0;
        z-index: 10;
        background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
    }

    .flipbook-title {
        font-size: 0.82rem;
        font-weight: 700;
        color: var(--pm-text);
    }

    .flipbook-close {
        width: 38px; height: 38px;
        border-radius: 50%;
        border: none;
        background: rgba(255, 255, 255, 0.1);
        color: var(--pm-text-dim);
        font-size: 1.1rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s;
    }
    .flipbook-close:hover {
        background: rgba(255, 60, 60, 0.25);
        color: #ff6b6b;
    }

    .flipbook-workspace {
        position: relative;
        width: 100%;
        height: 85vh;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
        box-sizing: border-box;
    }

    .flipbook-workspace .flip-book {
        box-shadow: 0 10px 30px rgba(0,0,0,0.8);
        display: none;
    }

    .flipbook-workspace .page {
        background-color: #ffffff;
        overflow: hidden;
        border: 1px solid #e0e0e0;
    }

    .flipbook-workspace canvas {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .flipbook-controls {
        display: none;
        gap: 10px;
        align-items: center;
        background: rgba(30, 30, 30, 0.9);
        padding: 10px 16px;
        border-radius: 10px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.5);
        color: #fff;
        z-index: 10;
        flex-wrap: wrap;
        justify-content: center;
        width: 90%;
        max-width: 500px;
        position: absolute;
        bottom: 16px;
        left: 50%;
        transform: translateX(-50%);
    }

    .flipbook-controls button {
        background: rgba(212, 168, 67, 0.2);
        color: var(--pm-gold-light);
        border: 1px solid rgba(212, 168, 67, 0.3);
        padding: 10px 18px;
        border-radius: 8px;
        cursor: pointer;
        font-weight: bold;
        font-size: 0.9rem;
        transition: all 0.25s;
        flex: 1;
        min-width: 60px;
    }
    .flipbook-controls button:hover {
        background: rgba(212, 168, 67, 0.35);
    }
    .flipbook-controls .btn-fs {
        background: rgba(255, 255, 255, 0.08);
        color: var(--pm-text);
        border-color: rgba(255, 255, 255, 0.1);
    }
    .flipbook-controls .btn-fs:hover {
        background: rgba(255, 255, 255, 0.14);
    }

    .flipbook-page-info {
        font-size: 0.82rem;
        font-family: 'Plus Jakarta Sans', monospace;
        text-align: center;
        min-width: 70px;
        color: var(--pm-text-dim);
    }

    .flipbook-loader {
        color: var(--pm-gold-light);
        font-size: 0.9rem;
        letter-spacing: 0.5px;
        font-family: monospace;
        position: absolute;
        text-align: center;
        z-index: 5;
    }
    .flipbook-loader .progress-bar {
        width: 180px; height: 3px;
        background: rgba(255,255,255,0.1);
        margin: 10px auto 0;
        border-radius: 2px;
    }
    .flipbook-loader .progress-fill {
        height: 100%;
        background: var(--pm-gold);
        width: 0%;
        transition: width 0.3s;
        border-radius: 2px;
    }

    /* ── Portfolio Bento Grid ── */
    .portfolio-section {
        padding: 64px 20px 80px;
    }

    @media (min-width: 768px) {
        .portfolio-section { padding: 100px 48px 120px; }
    }

    .section-eyebrow {
        font-size: 0.6rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: var(--pm-gold);
        margin-bottom: 10px;
    }

    @media (min-width: 768px) { .section-eyebrow { font-size: 0.65rem; } }

    .section-heading {
        font-size: clamp(1.4rem, 3.5vw, 2.2rem);
        font-weight: 800;
        letter-spacing: -0.03em;
        color: var(--pm-text);
        margin-bottom: 12px;
    }

    .section-desc {
        font-size: 0.85rem;
        color: var(--pm-text-dim);
        max-width: 480px;
        line-height: 1.6;
        margin-bottom: 40px;
    }

    @media (min-width: 768px) {
        .section-desc { margin-bottom: 48px; }
    }

    .bento-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    @media (min-width: 640px) {
        .bento-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    }

    @media (min-width: 1024px) {
        .bento-grid {
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: auto auto;
        }
        .bento-card:nth-child(1) { grid-column: span 2; grid-row: span 2; }
        .bento-card:nth-child(2) { grid-column: span 2; }
    }

    .bento-card {
        position: relative;
        background: var(--pm-bg-card);
        border: 1px solid var(--pm-glass-border);
        border-radius: var(--pm-radius);
        overflow: hidden;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        min-height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    @media (min-width: 768px) {
        .bento-card { min-height: 220px; }
    }

    .bento-card:hover {
        border-color: rgba(212, 168, 67, 0.2);
        box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), 0 0 32px var(--pm-gold-glow);
        transform: translateY(-4px);
    }

    .bento-bg {
        position: absolute;
        inset: 0;
        background: #000;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s;
        z-index: 0;
    }

    .bento-card:hover .bento-bg {
        transform: scale(1.06);
        filter: brightness(1.15);
    }

    .video-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
        background: #000;
        overflow: hidden;
    }

    .video-bg iframe {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 180%; /* Zoom in to cover the card area fully without black bars */
        height: 180%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        opacity: 0.8;
        filter: saturate(1.2) contrast(1.1);
    }

    .bento-bg video.seamless-video {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        opacity: 1;
        transition: opacity 1.5s ease-in-out;
        filter: saturate(1.1) contrast(1.05);
        object-fit: cover;
    }

    .bento-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(8, 9, 14, 0.85) 0%, rgba(8, 9, 14, 0.2) 40%, transparent 100%);
        z-index: 1;
    }

    .bento-content {
        position: relative;
        z-index: 2;
        padding: 16px;
    }

    @media (min-width: 768px) {
        .bento-content { padding: 24px; }
    }

    .bento-icon {
        width: 32px; height: 32px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(12px);
        display: flex; align-items: center; justify-content: center;
        font-size: 0.85rem;
        color: var(--pm-gold-light);
        margin-bottom: 10px;
        border: 1px solid rgba(212, 168, 67, 0.1);
    }

    @media (min-width: 768px) {
        .bento-icon { width: 36px; height: 36px; font-size: 0.9rem; border-radius: 10px; margin-bottom: 12px; }
    }

    .bento-title {
        font-size: 0.92rem;
        font-weight: 700;
        color: var(--pm-text);
        margin-bottom: 6px;
    }

    @media (min-width: 768px) { .bento-title { font-size: 1rem; } }

    .bento-desc {
        font-size: 0.68rem;
        color: var(--pm-text-dim);
        line-height: 1.4;
    }

    @media (min-width: 768px) { .bento-desc { font-size: 0.7rem; } }

    .bento-tag {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 3px 10px;
        border-radius: 50px;
        font-size: 0.55rem;
        font-weight: 700;
        text-transform: uppercase;
        background: var(--pm-gold-dim);
        color: var(--pm-gold-light);
    }

    /* Mute Toggle Button Styles */
    .bento-mute-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: rgba(8, 9, 14, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 99999 !important;
        transition: all 0.3s ease;
        backdrop-filter: blur(8px);
        pointer-events: auto !important;
    }

    .bento-mute-toggle:hover {
        background: var(--pm-gold);
        color: var(--pm-bg);
        transform: scale(1.1);
        border-color: var(--pm-gold);
    }

    .bento-mute-toggle.is-active {
        background: var(--pm-gold-light);
        color: var(--pm-bg);
        border-color: var(--pm-gold-light);
        box-shadow: 0 0 15px rgba(212, 168, 67, 0.4);
    }

    .bento-mute-toggle i {
        font-size: 1.1rem;
    }

    @media (max-width: 768px) {
        .bento-mute-toggle {
            width: 30px;
            height: 30px;
            top: 10px;
            right: 10px;
        }
        .bento-mute-toggle i {
            font-size: 0.9rem;
        }
    }


    /* ── Social Ecosystem Section ── */
    .social-ecosystem {
        padding: 64px 0 80px;
        background: linear-gradient(to bottom, transparent, rgba(212, 168, 67, 0.02), transparent);
    }

    @media (min-width: 768px) {
        .social-ecosystem { padding: 100px 0 120px; }
    }

    .social-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
        margin-top: 40px;
    }

    .social-card {
        background: var(--pm-bg-card);
        border: 1px solid var(--pm-glass-border);
        border-radius: var(--pm-radius);
        padding: 24px;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        gap: 16px;
        position: relative;
        overflow: hidden;
    }

    .social-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top right, rgba(212, 168, 67, 0.1), transparent 70%);
        opacity: 0;
        transition: opacity 0.4s;
    }

    .social-card:hover {
        transform: translateY(-8px);
        border-color: rgba(212, 168, 67, 0.3);
        box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px var(--pm-gold-glow);
    }

    .social-card:hover::before {
        opacity: 1;
    }

    .social-icon-wrapper {
        width: 50px;
        height: 50px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.05);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: var(--pm-gold-light);
        border: 1px solid rgba(212, 168, 67, 0.2);
        transition: all 0.3s;
    }

    .social-card:hover .social-icon-wrapper {
        background: var(--pm-gold-dim);
        transform: scale(1.1) rotate(-5deg);
    }

    .social-card-title {
        font-size: 1rem;
        font-weight: 700;
        color: var(--pm-text);
        margin: 0;
    }

    .social-card-handle {
        font-size: 0.75rem;
        color: var(--pm-gold);
        font-family: monospace;
        letter-spacing: 0.05em;
    }

    .social-card-desc {
        font-size: 0.8rem;
        color: var(--pm-text-dim);
        line-height: 1.5;
        margin: 0;
    }

    /* ── Awards & Achievements ── */
    .pm-awards {
        padding: 80px 0;
        background: linear-gradient(to bottom, transparent, rgba(212, 168, 67, 0.03), transparent);
    }

    .award-featured {
        position: relative;
        border-radius: var(--pm-radius);
        overflow: hidden;
        border: 1px solid var(--pm-glass-border);
        margin-top: 40px;
        min-height: 400px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .award-featured:hover {
        transform: translateY(-5px);
        border-color: rgba(212, 168, 67, 0.4);
        box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 30px var(--pm-gold-glow);
    }

    .award-img {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .award-featured:hover .award-img {
        transform: scale(1.05);
    }

    .award-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    }

    .award-content {
        position: relative;
        padding: 32px;
        z-index: 2;
    }

    .award-badge-featured {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: var(--pm-gold);
        color: var(--pm-bg);
        padding: 4px 12px;
        border-radius: 4px;
        font-size: 0.7rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 12px;
    }

    .award-title-featured {
        font-size: clamp(1.2rem, 3vw, 2rem);
        font-weight: 800;
        color: var(--pm-text);
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .award-meta {
        font-size: 0.85rem;
        color: var(--pm-text-dim);
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        margin-bottom: 16px;
    }

    .award-meta span { display: flex; align-items: center; gap: 6px; }
    .award-meta i { color: var(--pm-gold); }

    .award-description {
        font-size: 0.9rem;
        color: var(--pm-text-dim);
        line-height: 1.6;
        max-width: 700px;
        margin-bottom: 20px;
    }

    .award-winner-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(212, 168, 67, 0.1);
        border: 1px solid rgba(212, 168, 67, 0.2);
        padding: 8px 16px;
        border-radius: 50px;
        color: var(--pm-gold-light);
        font-size: 0.8rem;
        font-weight: 600;
    }

    .btn-pm-award-cta {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(212, 168, 67, 0.1);
        border: 1px solid var(--pm-gold);
        color: var(--pm-gold);
        padding: 12px 24px;
        border-radius: 8px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-size: 0.8rem;
        transition: all 0.3s ease;
        text-decoration: none;
        margin-bottom: 32px;
    }

    .btn-pm-award-cta:hover {
        background: var(--pm-gold);
        color: #000;
        box-shadow: 0 0 25px rgba(212, 168, 67, 0.4);
        transform: translateY(-2px);
    }

    @media (max-width: 768px) {
        .pm-awards { padding: 48px 0 60px; }
        .award-featured { 
            min-height: 420px; 
            margin-top: 16px;
            text-align: left;
        }
        .award-img {
            background-position: center 10%;
        }
        .award-content { 
            padding: 16px; 
            background: linear-gradient(to top, rgba(0,0,0,0.98) 20%, rgba(0,0,0,0.4) 60%, transparent 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }
        .award-badge-featured {
            padding: 6px 14px;
            font-size: 0.75rem;
            box-shadow: 0 0 20px rgba(212, 168, 67, 0.3);
            width: fit-content;
        }
        .award-title-featured { font-size: 1.25rem; margin-bottom: 6px; }
        .award-description { 
            font-size: 0.8rem; 
            margin-bottom: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.4;
        }
        .award-meta { font-size: 0.7rem; gap: 4px 10px; margin-bottom: 12px; }
    }

    @media (max-width: 480px) {
        .award-featured { min-height: 380px; }
        .award-description { display: none; } /* Truly minimalist on small mobile */
        .award-title-featured { font-size: 1.1rem; }
        
        .awards-secondary-grid {
            grid-template-columns: 1fr !important;
            gap: 12px !important;
        }
        .award-mini-img-wrapper { height: 180px !important; }
        .award-mini-content h4 { font-size: 0.9rem !important; }
    }

    .view-all-card:hover {
        background: rgba(212, 168, 67, 0.08) !important;
        border-color: var(--pm-gold) !important;
        transform: translateY(-5px);
    }
    .view-all-card:hover .view-all-icon {
        transform: scale(1.1);
        box-shadow: 0 0 30px rgba(212, 168, 67, 0.5) !important;
    }

    .services-carousel {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        padding: 10px 0 30px;
        margin: 0 -20px; 
        padding-left: 20px; /* Aligned exactly with container-narrow padding */
        padding-right: 20px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
    }

    @media (min-width: 768px) {
        .services-carousel {
            margin: 0 -48px;
            padding-left: 48px;
            padding-right: 48px;
            gap: 24px;
        }
    }

    .services-carousel::-webkit-scrollbar {
        display: none;
    }

    .service-card {
        flex: 0 0 82%; /* Reduced from 85% to give more breathing room */
        height: auto;
        min-height: 420px;
        background: var(--pm-glass-bg);
        border: 1px solid var(--pm-glass-border);
        border-radius: 20px;
        padding: 24px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        scroll-snap-align: start; /* Changed from center to align with text padding */
        transition: all 0.3s ease;
        position: relative;
        backdrop-filter: blur(12px);
    }

    @media (min-width: 480px) {
        .service-card { flex: 0 0 320px; }
    }

    @media (min-width: 768px) {
        .service-card { 
            flex: 0 0 400px; 
            padding: 32px;
        }
        .services-carousel { 
            gap: 24px;
            padding-left: calc((100vw - 1100px) / 2); 
            padding-right: 40px; 
        }
    }

    .service-card:hover {
        border-color: var(--pm-gold);
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    }

    .service-icon {
        width: 50px;
        height: 50px;
        background: var(--pm-gold-dim);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: var(--pm-gold-light);
        margin-bottom: 0;
    }

    @media (min-width: 768px) {
        .service-icon { width: 60px; height: 60px; font-size: 1.8rem; }
    }

    .service-badge {
        position: absolute;
        top: 24px;
        right: 24px;
        font-size: 0.6rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        padding: 4px 10px;
        background: rgba(212, 168, 67, 0.1);
        border: 1px solid rgba(212, 168, 67, 0.2);
        border-radius: 100px;
        color: var(--pm-gold);
    }

    @media (min-width: 768px) {
        .service-badge { top: 32px; right: 32px; font-size: 0.65rem; }
    }

    .service-title-group {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .service-title {
        font-size: 1.25rem;
        font-weight: 800;
        color: var(--pm-text);
        margin: 0;
        line-height: 1.25;
    }

    @media (min-width: 768px) {
        .service-title { font-size: 1.5rem; }
    }

    .service-subtitle {
        font-size: 0.72rem;
        color: var(--pm-gold);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        margin: 0;
    }

    @media (min-width: 768px) {
        .service-subtitle { font-size: 0.75rem; }
    }

    .service-steps {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin: 12px 0;
    }

    .step-item {
        display: flex;
        gap: 14px;
        align-items: flex-start;
    }

    .step-num {
        flex-shrink: 0;
        width: 22px;
        height: 22px;
        background: var(--pm-gold);
        color: #000;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.68rem;
        font-weight: 800;
    }

    @media (min-width: 768px) {
        .step-num { width: 26px; height: 26px; font-size: 0.78rem; }
    }

    .step-text {
        font-size: 0.82rem;
        color: var(--pm-text-dim);
        line-height: 1.5;
    }

    @media (min-width: 768px) {
        .step-text { font-size: 0.88rem; }
    }

    .step-text strong {
        color: var(--pm-text);
        display: block;
        margin-bottom: 4px;
    }

    .service-actions {
        margin-top: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        padding-top: 15px;
    }

    @media (min-width: 440px) {
        .service-actions { grid-template-columns: 1fr 1fr; }
    }

    .btn-service {
        padding: 14px;
        border-radius: 12px;
        font-size: 0.75rem;
        font-weight: 700;
        text-align: center;
        text-decoration: none;
        transition: all 0.3s;
    }

    @media (min-width: 768px) {
        .btn-service { font-size: 0.78rem; }
    }

    .btn-service.primary {
        background: var(--pm-gold);
        color: #000;
    }

    .btn-service.secondary {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(212, 168, 67, 0.2);
        color: var(--pm-text);
    }

    .btn-service:hover {
        transform: scale(1.05);
        filter: brightness(1.2);
    }

    /* ── Backstage CTA Section ── */
    .backstage {
        padding: 64px 20px 80px;
        text-align: center;
        border-top: 1px solid var(--pm-glass-border);
    }

    @media (min-width: 768px) {
        .backstage { padding: 100px 48px 120px; }
    }

    .backstage-title {
        font-size: clamp(1.3rem, 3.5vw, 2rem);
        font-weight: 800;
        color: var(--pm-text);
        letter-spacing: -0.02em;
        margin-bottom: 14px;
    }

    .backstage-desc {
        font-size: 0.85rem;
        color: var(--pm-text-dim);
        max-width: 480px;
        margin: 0 auto 36px;
        line-height: 1.6;
    }

    .backstage-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    @media (min-width: 480px) {
        .backstage-actions {
            flex-direction: row;
            justify-content: center;
            gap: 12px;
        }
    }

    .btn-backstage {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 28px;
        border-radius: 50px;
        font-size: 0.82rem;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: none;
        cursor: pointer;
        width: 100%;
        justify-content: center;
    }

    @media (min-width: 480px) {
        .btn-backstage { width: auto; }
    }

    .btn-backstage.primary {
        background: linear-gradient(135deg, var(--pm-gold), #b8860b);
        color: var(--pm-bg);
        box-shadow: 0 8px 32px var(--pm-gold-glow);
    }
    .btn-backstage.primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 48px rgba(245, 197, 24, 0.3);
        color: var(--pm-bg);
    }

    .btn-backstage.secondary {
        background: rgba(255, 255, 255, 0.05);
        color: var(--pm-text-dim);
        border: 1px solid var(--pm-glass-border);
    }
    .btn-backstage.secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--pm-text);
        transform: translateY(-2px);
    }
