/* ===== CORPORATE GIFTS — LUXURY REDESIGN ===== */
body.corporate-gifts-premium {
    --cg-bg: #0A0A0A;
    --cg-card-bg: rgba(20, 20, 20, 0.5);
    --cg-card-border: rgba(255, 255, 255, 0.08);
    --cg-accent: #B31B1B; /* Deep Crimson */
    --cg-accent-soft: rgba(179, 27, 27, 0.2);
    --cg-text-hero: #ffffff;
    --cg-text-body: #b0b0b0;
    --cg-text-muted: #666666;
    --cg-gradient-text: linear-gradient(135deg, #fff 0%, #B31B1B 100%);
    --cg-gradient-glow: linear-gradient(135deg, rgba(179, 27, 27, 0.2), rgba(0, 0, 0, 0.2));
    --cg-font-display: 'Cormorant Garamond', Georgia, serif;
    --cg-font-body: 'Outfit', sans-serif;
    --cg-radius-inner: 20px;
    --cg-radius-outer: 32px;
}

.corporate-gifts-premium {
    background-color: var(--cg-bg);
    color: var(--cg-text-body);
    font-family: var(--cg-font-body);
}

/* Background Noise Texture */
.lux-noise {
    position: fixed;
    inset: 0;
    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.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

/* Typography Utilities */
.cg-h2 {
    font-family: var(--cg-font-display);
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--cg-text-hero);
    margin-bottom: 24px;
}

.cg-h2 em {
    font-style: italic;
    color: var(--cg-accent);
}

.cg-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--cg-font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--cg-accent);
    margin-bottom: 30px;
}

.cg-eyebrow::before {
    content: "";
    width: 40px;
    height: 1px;
    background: var(--cg-accent);
}

/* —— Cinematic Hero Section —— */
.cg-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
    background: radial-gradient(circle at 70% 30%, rgba(179, 27, 27, 0.15), transparent 60%);
}

.cg-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.cg-hero-content {
    z-index: 2;
    padding-right: 40px;
}

.cg-hero__title {
    font-family: var(--cg-font-display);
    font-weight: 500;
    font-size: clamp(2.5rem, 8vw, 6.5rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: var(--cg-text-hero);
    margin-bottom: 32px;
}

.cg-hero__title em {
    display: block;
    font-style: italic;
    color: var(--cg-accent);
}

.cg-hero__lede {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--cg-text-body);
    max-width: 500px;
    margin-bottom: 48px;
    font-weight: 300;
}

.cg-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.cg-btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 0 32px;
    background: var(--cg-accent);
    color: #fff;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    text-transform: none;
    letter-spacing: -0.01em;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    z-index: 1;
    border: none;
    box-shadow: 0 10px 25px rgba(179, 27, 27, 0.3);
}

.cg-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(179, 27, 27, 0.4);
    background: #901515;
}

.cg-btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: 0.6s;
    z-index: -1;
}

.cg-btn-primary:hover::after {
    left: 100%;
}

.cg-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 0 32px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    text-transform: none;
    letter-spacing: -0.01em;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.cg-btn-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Floating UI Visual */
.cg-hero-visual {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.float-img {
    position: absolute;
    border-radius: var(--cg-radius-outer);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.7s cubic-bezier(0.2, 1, 0.3, 1);
}

.float-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.float-img:hover {
    transform: scale(1.05) translateY(-10px) !important;
    z-index: 10;
    border-color: rgba(179, 27, 27, 0.4);
}

.float-1 {
    width: 320px;
    height: 480px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.float-2 {
    width: 260px;
    height: 340px;
    top: 10%;
    left: 0;
    transform: rotate(-8deg);
    z-index: 1;
    opacity: 0.8;
}

.float-3 {
    width: 280px;
    height: 380px;
    bottom: 5%;
    right: 0;
    transform: rotate(6deg);
    z-index: 3;
}

/* —— Staggered Bento Grid —— */
.cg-section {
    padding: 140px 0;
    position: relative;
}

.cg-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.cg-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.bento-stagger {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    grid-auto-rows: 280px;
}

.bento-card {
    position: relative;
    border-radius: var(--cg-radius-outer);
    overflow: hidden;
    background: var(--cg-card-bg);
    border: 1px solid var(--cg-card-border);
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    cursor: pointer;
}

.bento-card:hover {
    transform: translateY(-10px);
    border-color: rgba(179, 27, 27, 0.4);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.bento-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bento-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.5s ease;
    filter: grayscale(20%);
}

.bento-card:hover .bento-bg img {
    transform: scale(1.1);
    opacity: 0.9;
    filter: grayscale(0%);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.6) 50%, rgba(10, 10, 10, 0.95) 100%);
    z-index: 1;
}

.bento-content {
    position: relative;
    z-index: 2;
}

.bento-content h3 {
    font-family: var(--cg-font-display);
    font-size: 2.2rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 12px;
}

.bento-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    max-width: 300px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.bento-card:hover .bento-content p {
    transform: translateY(0);
    opacity: 1;
}

.bento-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 2;
    background: var(--cg-accent);
    color: #fff;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Grid Spans */
.bento-tall {
    grid-column: span 5;
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 7;
    grid-row: span 1;
}

.bento-square {
    grid-column: span 3;
    grid-row: span 1;
}

.bento-rect {
    grid-column: span 4;
    grid-row: span 1;
}

/* —— Editorial Feature Section —— */
.cg-editorial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    padding: 60px 0;
}

.cg-editorial-reverse {
    grid-template-columns: 1.2fr 1fr;
}

.cg-editorial-reverse .cg-editorial-visual {
    order: 0;
}

.cg-editorial-reverse .cg-editorial-text {
    order: 1;
}

.cg-editorial-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--cg-text-body);
    margin-bottom: 40px;
    font-weight: 300;
}

.cg-editorial-list {
    list-style: none;
    padding: 0;
}

.cg-editorial-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cg-editorial-list .num {
    font-family: var(--cg-font-display);
    font-size: 1.5rem;
    color: var(--cg-accent);
    font-weight: 600;
}

.cg-editorial-list h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 500;
}

.cg-editorial-visual {
    position: relative;
    border-radius: var(--cg-radius-outer);
    overflow: hidden;
    height: 700px;
}

.cg-editorial-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* —— CTA Section —— */
.cg-cta-section {
    padding: 160px 0;
    text-align: center;
    background: linear-gradient(to top, rgba(179, 27, 27, 0.1), transparent);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cg-cta-section .cg-h2 {
    margin-bottom: 40px;
}

/* —— Responsive Adjustments —— */
@media (max-width: 1200px) {
    .bento-stagger {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-tall, .bento-wide, .bento-square, .bento-rect {
        grid-column: span 1;
    }
    .bento-tall {
        grid-row: span 2;
    }
}

@media (max-width: 992px) {
    .cg-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 80px;
    }
    .cg-hero-content {
        padding-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    .cg-hero-actions {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 12px;
        width: 100%;
        max-width: 500px;
    }
    .cg-btn-primary, .cg-btn-ghost {
        padding: 0 20px;
        height: 50px;
        font-size: 15px;
        flex: 1;
        min-width: 0;
        letter-spacing: -0.01em;
        text-transform: none;
    }
    .cg-eyebrow {
        justify-content: center;
    }
    .cg-hero-visual {
        height: 400px;
    }
    .cg-editorial {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 0;
    }
    .cg-editorial-visual,
    .cg-editorial-reverse .cg-editorial-visual {
        height: 350px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .cg-section {
        padding: 60px 0;
    }
    .cg-section-header {
        margin-bottom: 40px;
    }
    .cg-hero {
        padding-top: 80px;
        min-height: auto;
    }
    .cg-hero-grid {
        gap: 40px;
    }
    .cg-hero__title {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }
    .cg-hero__lede {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    .bento-stagger {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
        gap: 20px;
    }
    .bento-tall {
        grid-row: span 1;
    }
    .bento-card {
        padding: 30px;
    }
    .float-1 { width: 220px; height: 320px; }
    .float-2 { width: 160px; height: 220px; left: -10px; }
    .float-3 { width: 180px; height: 260px; right: -10px; }
    
    .cg-btn-primary, .cg-btn-ghost {
        padding: 0 12px;
        height: 48px;
        font-size: 13px;
        flex: 1;
        min-width: 0;
    }
    .cg-hero-actions {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        width: 100%;
        gap: 8px;
        margin-bottom: 40px;
    }
}