/*=============================================
    ArtCastle – Luxury Enhancements
    custom.css  (layered on top of style.css)
===============================================*/

/* ── Google Font: Cormorant Garamond (luxury serif) ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

/* ─────────────────────────────────────────
   CSS CUSTOM PROPERTIES (brand tokens)
───────────────────────────────────────── */
:root {
    --lux-gold:    #d7b39a;
    --lux-dark:    #1a1a2e;
    --lux-black:   #0d0d0d;
    --lux-white:   #ffffff;
    --lux-gray:    #f7f5f3;
    --lux-mid:     #6b6b6b;
    --lux-serif:   'Cormorant Garamond', Georgia, serif;
    --lux-sans:    'Poppins', sans-serif;
    --lux-shadow:  0 8px 40px rgba(215,179,154,0.18);
    --lux-shadow2: 0 20px 60px rgba(0,0,0,0.12);
    --lux-radius:  4px;
    --lux-trans:   all 0.42s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* ─────────────────────────────────────────
   SCROLL PROGRESS BAR
───────────────────────────────────────── */
#scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--lux-gold) 0%, #b8865e 100%);
    z-index: 99999;
    transition: width 0.1s linear;
}

/* ─────────────────────────────────────────
   FADE-UP SCROLL REVEAL
───────────────────────────────────────── */
.lux-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}
.lux-fade-up.lux-visible {
    opacity: 1;
    transform: translateY(0);
}
.lux-fade-up.lux-delay-1 { transition-delay: 0.1s; }
.lux-fade-up.lux-delay-2 { transition-delay: 0.22s; }
.lux-fade-up.lux-delay-3 { transition-delay: 0.34s; }
.lux-fade-up.lux-delay-4 { transition-delay: 0.46s; }
.lux-fade-up.lux-delay-5 { transition-delay: 0.58s; }
.lux-fade-up.lux-delay-6 { transition-delay: 0.70s; }

/* ─────────────────────────────────────────
   GLOBAL SECTION TITLE ENHANCEMENTS
───────────────────────────────────────── */
.lux-section-label {
    font-family: var(--lux-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--lux-gold);
    display: block;
    margin-bottom: 10px;
}
.lux-section-title {
    font-family: var(--lux-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    color: var(--lux-black);
    line-height: 1.2;
    margin-bottom: 16px;
}
.lux-section-title span {
    color: var(--lux-gold);
    font-style: italic;
}
.lux-section-sub {
    font-family: var(--lux-sans);
    font-size: 15px;
    font-weight: 400;
    color: var(--lux-mid);
    line-height: 1.75;
    max-width: 580px;
}
.lux-section-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 48px;
}
.lux-section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--lux-gold) 0%, transparent 100%);
    max-width: 120px;
}
.lux-title-wrap { margin-bottom: 60px; }
.lux-title-wrap.center { text-align: center; }
.lux-title-wrap.center .lux-section-sub { margin: 0 auto; }
.lux-title-wrap.center .lux-section-divider { justify-content: center; }
.lux-title-wrap.center .lux-section-divider::after {
    background: linear-gradient(90deg, transparent 0%, var(--lux-gold) 50%, transparent 100%);
}

/* ─────────────────────────────────────────
   ENHANCED EXISTING BUTTONS
───────────────────────────────────────── */
.site-button {
    letter-spacing: 1.5px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--lux-trans);
    position: relative;
    overflow: hidden;
}
.site-button::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.08);
    opacity: 0;
    transition: opacity 0.3s;
}
.site-button:hover::after { opacity: 1; }

.site-button-secondry {
    letter-spacing: 1.5px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--lux-trans);
}

/* ─────────────────────────────────────────
   HEADER ENHANCEMENT
───────────────────────────────────────── */
.sticky-header.is-fixed .main-bar {
    box-shadow: 0 4px 30px rgba(0,0,0,0.10);
}
.top-bar.bg-gray {
    background-color: var(--lux-dark) !important;
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    letter-spacing: 0.5px;
}
.top-bar.bg-gray .e-p-bx li span {
    color: var(--lux-gold);
    font-weight: 600;
}
.top-bar.bg-gray .e-p-bx li {
    color: rgba(255,255,255,0.75);
}
.header-nav .nav > li > a {
    letter-spacing: 0.8px;
    font-size: 13px;
    font-weight: 500;
    transition: var(--lux-trans);
}
.get-in-touch-btn {
    letter-spacing: 1.5px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 0;
    padding: 10px 24px !important;
}

/* ─────────────────────────────────────────
   HERO / SLIDER ENHANCEMENT
───────────────────────────────────────── */
.home-rev-slider {
    position: relative;
}
/* Cinematic overlay gradient */
.rev-slidebg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13,13,13,0.82) 0%,
        rgba(13,13,13,0.45) 60%,
        rgba(13,13,13,0.20) 100%
    );
    pointer-events: none;
    z-index: 5;
}
/* Scroll-down indicator */
.lux-scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    text-decoration: none !important;
}
.lux-scroll-indicator span {
    font-family: var(--lux-sans);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}
.lux-scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
}
.lux-scroll-mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    width: 3px;
    height: 8px;
    background: var(--lux-gold);
    border-radius: 2px;
    animation: lux-scroll-dot 1.8s ease infinite;
}
@keyframes lux-scroll-dot {
    0%   { opacity: 1; top: 6px; }
    80%  { opacity: 0; top: 22px; }
    100% { opacity: 0; top: 6px; }
}
/* Decorative left accent on slider */
.slide-left-social {
    opacity: 0.8;
}
.slide-left-social ul li a {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 500;
}

/* ─────────────────────────────────────────
   STATS STRIP  (#lux-stats)
───────────────────────────────────────── */
#lux-stats {
    background: linear-gradient(135deg, var(--lux-dark) 0%, #16213e 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
#lux-stats::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 320px; height: 320px;
    border: 1px solid rgba(215,179,154,0.08);
    border-radius: 50%;
}
#lux-stats::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 400px; height: 400px;
    border: 1px solid rgba(215,179,154,0.06);
    border-radius: 50%;
}
.lux-stat-item {
    text-align: center;
    padding: 20px 10px;
    position: relative;
    z-index: 2;
}
.lux-stat-item::after {
    content: '';
    position: absolute;
    right: 0; top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(215,179,154,0.15);
}
.lux-stat-item:last-child::after { display: none; }
.lux-stat-number {
    font-family: var(--lux-serif);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--lux-gold);
    line-height: 1;
    display: block;
    margin-bottom: 6px;
}
.lux-stat-suffix {
    font-family: var(--lux-sans);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--lux-gold);
}
.lux-stat-label {
    font-family: var(--lux-sans);
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
    margin-top: 8px;
    display: block;
}
.lux-stat-icon {
    width: 44px; height: 44px;
    border: 1px solid rgba(215,179,154,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--lux-gold);
    font-size: 16px;
    transition: var(--lux-trans);
}
.lux-stat-item:hover .lux-stat-icon {
    background: var(--lux-gold);
    color: var(--lux-dark);
    transform: scale(1.1);
}

/* ─────────────────────────────────────────
   EXISTING ABOUT SECTION – refinements
───────────────────────────────────────── */
.about-home-left {
    border-left: 3px solid var(--lux-gold);
    padding-left: 28px;
}
.about-home-left h3 {
    font-family: var(--lux-serif);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 600;
    line-height: 1.25;
}
.about-home-left p {
    font-size: 15px;
    line-height: 1.85;
    color: #555;
    margin-top: 16px;
}
.about-home-before {
    border: 8px solid var(--lux-gray);
    box-shadow: var(--lux-shadow);
}

/* ─────────────────────────────────────────
   EXISTING SERVICE CARDS – luxury upgrade
───────────────────────────────────────── */
.icon-count-2-outer {
    height: 100%;
}
.icon-count-2 {
    height: 100%;
    padding: 36px 28px 32px !important;
    border: 1px solid rgba(215,179,154,0);
    border-radius: var(--lux-radius);
    transition: var(--lux-trans);
    position: relative;
    overflow: hidden;
}
.icon-count-2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(215,179,154,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.42s ease;
}
.icon-count-2:hover {
    border-color: rgba(215,179,154,0.35);
    box-shadow: var(--lux-shadow);
    transform: translateY(-6px) !important;
}
.icon-count-2:hover::before { opacity: 1; }
.icon-count-2 .icon-count-number {
    font-family: var(--lux-serif);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(215,179,154,0.10);
    position: absolute;
    top: -8px; right: 20px;
    line-height: 1;
    pointer-events: none;
    transition: color 0.4s ease;
}
.icon-count-2:hover .icon-count-number { color: rgba(215,179,154,0.22); }
.icon-count-2 .icon-xl .icon-cell i {
    font-size: 2.6rem !important;
    color: var(--lux-gold);
    transition: transform 0.4s ease;
}
.icon-count-2:hover .icon-xl .icon-cell i { transform: scale(1.15) rotate(-5deg); }
.icon-count-2 h4.sx-tilte {
    font-family: var(--lux-serif);
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 14px;
    margin-bottom: 10px;
    color: #1a1a1a;
    transition: color 0.3s;
}
.icon-count-2:hover h4.sx-tilte { color: var(--lux-gold); }
.icon-count-2 .icon-content p {
    font-size: 14px;
    line-height: 1.75;
    color: #666;
}
/* Services section background */
.section-full.bg-gray {
    background-color: var(--lux-gray) !important;
}

/* ─────────────────────────────────────────
   WHY CHOOSE US  (#lux-why)
───────────────────────────────────────── */
#lux-why {
    background: var(--lux-white);
    padding: 100px 0;
    position: relative;
}
#lux-why::before {
    content: 'EXCELLENCE';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--lux-serif);
    font-size: clamp(5rem, 12vw, 14rem);
    font-weight: 700;
    color: rgba(215,179,154,0.04);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 10px;
    line-height: 1;
}
.lux-why-card {
    background: var(--lux-white);
    border: 1px solid rgba(215,179,154,0.18);
    border-radius: var(--lux-radius);
    padding: 40px 28px 32px;
    text-align: center;
    transition: var(--lux-trans);
    position: relative;
    overflow: hidden;
    height: 100%;
}
.lux-why-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lux-gold), #b8865e);
    transform: scaleX(0);
    transition: transform 0.42s ease;
    transform-origin: left;
}
.lux-why-card:hover {
    box-shadow: var(--lux-shadow);
    transform: translateY(-8px);
    border-color: transparent;
}
.lux-why-card:hover::before { transform: scaleX(1); }
.lux-why-icon {
    width: 70px; height: 70px;
    border: 1.5px solid var(--lux-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 24px;
    color: var(--lux-gold);
    background: rgba(215,179,154,0.06);
    transition: var(--lux-trans);
}
.lux-why-card:hover .lux-why-icon {
    background: var(--lux-gold);
    color: var(--lux-white);
    transform: scale(1.1) rotate(5deg);
}
.lux-why-title {
    font-family: var(--lux-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    transition: color 0.3s;
}
.lux-why-card:hover .lux-why-title { color: var(--lux-gold); }
.lux-why-desc {
    font-size: 13.5px;
    line-height: 1.75;
    color: #777;
    margin: 0;
}

/* ─────────────────────────────────────────
   PROJECTS SECTION – enhanced
───────────────────────────────────────── */
.image-hover-block {
    border-radius: var(--lux-radius);
    overflow: hidden;
}
.image-hover-block .sx-thum-bx img {
    transition: transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
}
.image-hover-block:hover .sx-thum-bx img {
    transform: scale(1.08);
}
.filter-pos-right .btn-filter-wrap li {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 8px 18px;
    transition: var(--lux-trans);
    border-radius: 0;
}
.filter-pos-right .btn-filter-wrap {
    border: 1px solid rgba(215,179,154,0.3);
    border-radius: var(--lux-radius);
    overflow: hidden;
    display: inline-flex;
}

/* ─────────────────────────────────────────
   TESTIMONIALS  (#lux-testimonials)
───────────────────────────────────────── */
#lux-testimonials {
    background: var(--lux-gray);
    padding: 100px 0;
}
.lux-testimonial-card {
    background: var(--lux-white);
    border-radius: var(--lux-radius);
    padding: 40px 32px 32px;
    position: relative;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: var(--lux-trans);
    margin: 10px 5px 30px;
}
.lux-testimonial-card:hover {
    box-shadow: var(--lux-shadow);
    transform: translateY(-4px);
}
.lux-quote-icon {
    position: absolute;
    top: -18px;
    left: 32px;
    width: 44px; height: 44px;
    background: var(--lux-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lux-white);
    font-size: 18px;
    box-shadow: 0 4px 16px rgba(215,179,154,0.4);
}
.lux-testimonial-text {
    font-family: var(--lux-serif);
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.85;
    color: #555;
    margin-bottom: 24px;
}
.lux-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(215,179,154,0.2);
}
.lux-author-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--lux-gold);
    flex-shrink: 0;
}
.lux-author-avatar-placeholder {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lux-gold), #b8865e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 600;
    font-family: var(--lux-serif);
    flex-shrink: 0;
    border: 2px solid var(--lux-gold);
}
.lux-author-name {
    font-family: var(--lux-sans);
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
    display: block;
}
.lux-author-role {
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--lux-gold);
    text-transform: uppercase;
    font-weight: 500;
}
.lux-stars {
    margin-bottom: 16px;
}
.lux-stars i {
    color: var(--lux-gold);
    font-size: 13px;
    margin-right: 2px;
}

/* ─────────────────────────────────────────
   PROCESS TIMELINE  (#lux-process)
───────────────────────────────────────── */
#lux-process {
    background: var(--lux-white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.lux-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
    margin-top: 60px;
}
.lux-process-grid::before {
    content: '';
    position: absolute;
    top: 52px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lux-gold), var(--lux-gold), var(--lux-gold), transparent);
    z-index: 0;
}
.lux-process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 12px;
}
.lux-process-dot {
    width: 56px; height: 56px;
    border-radius: 50%;
    border: 2px solid var(--lux-gold);
    background: var(--lux-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px auto 24px;
    font-family: var(--lux-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--lux-gold);
    transition: var(--lux-trans);
    box-shadow: 0 0 0 6px rgba(215,179,154,0.10);
    position: relative;
    z-index: 2;
}
.lux-process-step:hover .lux-process-dot {
    background: var(--lux-gold);
    color: var(--lux-white);
    transform: scale(1.12);
    box-shadow: 0 0 0 10px rgba(215,179,154,0.15);
}
.lux-process-title {
    font-family: var(--lux-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}
.lux-process-desc {
    font-size: 12.5px;
    color: #888;
    line-height: 1.65;
}
.lux-process-num {
    font-family: var(--lux-serif);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--lux-gold);
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}
@media (max-width: 992px) {
    .lux-process-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    .lux-process-grid::before { display: none; }
}
@media (max-width: 600px) {
    .lux-process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

/* ─────────────────────────────────────────
   PREMIUM CTA SECTION  (#lux-cta)
───────────────────────────────────────── */
#lux-cta {
    background: linear-gradient(135deg, var(--lux-dark) 0%, #0d1b2a 50%, #16213e 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}
#lux-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(215,179,154,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(215,179,154,0.06) 0%, transparent 60%);
}
.lux-cta-label {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--lux-gold);
    font-weight: 600;
    display: block;
    margin-bottom: 16px;
}
.lux-cta-title {
    font-family: var(--lux-serif);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 600;
    color: var(--lux-white);
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
}
.lux-cta-title em {
    font-style: italic;
    color: var(--lux-gold);
}
.lux-cta-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.60);
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto 40px;
    font-weight: 400;
}
.lux-cta-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.lux-btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--lux-gold);
    color: var(--lux-dark) !important;
    font-family: var(--lux-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    transition: var(--lux-trans);
    border: 2px solid var(--lux-gold);
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
}
.lux-btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.12);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}
.lux-btn-primary:hover {
    background: transparent;
    color: var(--lux-gold) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(215,179,154,0.30);
}
.lux-btn-primary:hover::after { transform: translateX(100%); }
.lux-btn-outline {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: rgba(255,255,255,0.85) !important;
    font-family: var(--lux-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    transition: var(--lux-trans);
    border: 2px solid rgba(255,255,255,0.25);
    text-decoration: none !important;
}
.lux-btn-outline:hover {
    border-color: rgba(255,255,255,0.7);
    color: var(--lux-white) !important;
    transform: translateY(-3px);
}
/* Decorative dots */
.lux-cta-dots {
    position: absolute;
    top: 30px; right: 60px;
    display: grid;
    grid-template-columns: repeat(4, 6px);
    gap: 8px;
    opacity: 0.12;
}
.lux-cta-dots span {
    width: 6px; height: 6px;
    background: var(--lux-gold);
    border-radius: 50%;
    display: block;
}

/* ─────────────────────────────────────────
   FOOTER ENHANCEMENTS
───────────────────────────────────────── */
.site-footer.footer-dark .footer-top {
    padding-top: 80px;
    padding-bottom: 50px;
}
.site-footer .widget-title {
    font-family: var(--lux-serif);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 24px !important;
}
.site-footer .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 36px; height: 2px;
    background: var(--lux-gold);
    border-radius: 2px;
}
.site-footer .widget_services ul li a {
    font-size: 13px;
    letter-spacing: 0.3px;
    transition: var(--lux-trans);
    padding: 4px 0;
    display: inline-block;
}
.site-footer .widget_services ul li a::before {
    content: '→ ';
    opacity: 0;
    transition: opacity 0.3s;
    color: var(--lux-gold);
}
.site-footer .widget_services ul li a:hover::before { opacity: 1; }
.site-footer .widget_address ul li {
    font-size: 13px;
    line-height: 1.75;
    padding: 4px 0;
    opacity: 0.75;
}
.social-icons.sx-social-links li a {
    width: 38px; height: 38px;
    border: 1px solid rgba(215,179,154,0.3);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--lux-trans);
}
.social-icons.sx-social-links li a:hover {
    border-color: var(--lux-gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(215,179,154,0.25);
}
/* Footer mini motto */
.lux-footer-motto {
    font-family: var(--lux-serif);
    font-size: 1rem;
    font-style: italic;
    color: rgba(255,255,255,0.35);
    margin-top: 18px;
    line-height: 1.6;
    display: block;
}
.footer-bottom {
    padding: 18px 0;
}
.copyrights-text {
    font-size: 12px;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.45);
}
/* Newsletter strip */
.call-to-action-wrap {
    border-top: 1px solid rgba(215,179,154,0.12);
    padding-top: 30px;
    margin-top: 20px;
}

/* ─────────────────────────────────────────
   STICKY WHATSAPP BUTTON
───────────────────────────────────────── */
#lux-whatsapp-btn {
    position: fixed;
    bottom: 90px;
    right: 28px;
    z-index: 9999;
    opacity: 0;
    transform: scale(0.6) translateY(20px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
#lux-whatsapp-btn.lux-wa-visible {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: all;
}
#lux-whatsapp-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px; height: 54px;
    background: #25D366;
    border-radius: 50%;
    color: white !important;
    font-size: 24px;
    box-shadow: 0 6px 24px rgba(37,211,102,0.40);
    transition: var(--lux-trans);
    text-decoration: none !important;
}
#lux-whatsapp-btn a:hover {
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 10px 32px rgba(37,211,102,0.50);
}
/* Pulse ring */
#lux-whatsapp-btn a::before {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 2px solid #25D366;
    inset: -6px;
    animation: lux-wa-pulse 2.2s ease infinite;
    opacity: 0;
}
@keyframes lux-wa-pulse {
    0%   { inset: -4px; opacity: 0.6; }
    100% { inset: -18px; opacity: 0; }
}
/* Tooltip */
#lux-whatsapp-btn::before {
    content: 'Chat on WhatsApp';
    position: absolute;
    right: 64px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.78);
    color: white;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
#lux-whatsapp-btn:hover::before { opacity: 1; }

/* ─────────────────────────────────────────
   FLOATING CONSULTATION CTA
───────────────────────────────────────── */
#lux-float-cta {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 9998;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.45s ease;
}
#lux-float-cta.lux-float-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
.lux-float-inner {
    background: var(--lux-dark);
    border: 1px solid rgba(215,179,154,0.25);
    border-radius: 6px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    max-width: 280px;
}
.lux-float-inner .lux-float-icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(215,179,154,0.12);
    border: 1px solid var(--lux-gold);
    display: flex; align-items: center; justify-content: center;
    color: var(--lux-gold);
    font-size: 16px;
    flex-shrink: 0;
}
.lux-float-text {
    flex: 1;
}
.lux-float-text strong {
    display: block;
    color: white;
    font-size: 13px;
    font-weight: 600;
}
.lux-float-text span {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    margin-top: 2px;
}
.lux-float-action {
    display: block;
    margin-top: 10px;
    padding: 8px 14px;
    background: var(--lux-gold);
    color: var(--lux-dark) !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none !important;
    border-radius: 2px;
    transition: var(--lux-trans);
}
.lux-float-action:hover {
    background: #c4a080;
    transform: translateY(-1px);
}
.lux-float-close {
    position: absolute;
    top: -10px; right: -10px;
    width: 22px; height: 22px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
    transition: background 0.2s;
    line-height: 1;
}
.lux-float-close:hover { background: rgba(0,0,0,0.9); }
#lux-float-cta .lux-float-inner { position: relative; }

/* ─────────────────────────────────────────
   LARGE TITLE BLOCK – refine
───────────────────────────────────────── */
.large-title-block h3 {
    font-family: var(--lux-serif);
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 600;
    line-height: 1.3;
}
.large-title-info p {
    font-size: 15px;
    line-height: 1.85;
    color: #666;
}

/* ─────────────────────────────────────────
   SCROLL-TO-TOP BUTTON
───────────────────────────────────────── */
.scroltop {
    background: var(--lux-dark) !important;
    border: 1px solid rgba(215,179,154,0.25);
    transition: var(--lux-trans);
}
.scroltop:hover {
    background: var(--lux-gold) !important;
    transform: translateY(-3px);
    border-color: var(--lux-gold);
}

/* ─────────────────────────────────────────
   SECTION NUMBER BLOCK – enhance
───────────────────────────────────────── */
.number-block-one .figcaption {
    border-top: 3px solid transparent;
    transition: border-color 0.4s ease;
}
.number-block-one:hover .figcaption {
    border-top-color: var(--lux-gold);
}
.number-block-one .figcaption h4 {
    font-family: var(--lux-serif);
    font-size: 1.1rem;
    font-weight: 600;
}

/* ─────────────────────────────────────────
   RESPONSIVE TIGHTENING
───────────────────────────────────────── */
@media (max-width: 1199px) {
    #lux-stats .lux-stat-item::after { display: none; }
}
@media (max-width: 991px) {
    #lux-why { padding: 70px 0; }
    #lux-testimonials { padding: 70px 0; }
    #lux-process { padding: 70px 0; }
    #lux-cta { padding: 70px 0; }
    #lux-stats { padding: 50px 0; }
    .lux-title-wrap { margin-bottom: 40px; }
    #lux-float-cta { display: none; }
}
@media (max-width: 767px) {
    .lux-scroll-indicator { display: none; }
    .lux-cta-buttons { flex-direction: column; align-items: center; }
    .lux-why-card { padding: 28px 20px; }
    #lux-whatsapp-btn { bottom: 80px; right: 18px; }
}

/* ─────────────────────────────────────────
   WHAT WE DO — Redesigned Card Grid
───────────────────────────────────────── */
#lux-whatwedo {
    padding-bottom: 0;
}
#lux-whatwedo .lux-title-wrap {
    margin-bottom: 50px;
}

/* Grid wrapper — flush full width */
.lux-wwd-grid {
    margin: 0;
}
.lux-wwd-col {
    padding: 0 !important;
}

/* Each card — full-bleed image */
.lux-wwd-card {
    position: relative;
    height: 420px;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
    cursor: pointer;
}

/* Dark overlay — rests at 60%, deepens on hover */
.lux-wwd-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(13,13,13,0.15) 0%,
        rgba(13,13,13,0.72) 55%,
        rgba(13,13,13,0.92) 100%
    );
    transition: background 0.5s ease;
    z-index: 1;
}
.lux-wwd-card:hover .lux-wwd-overlay {
    background: linear-gradient(
        180deg,
        rgba(13,13,13,0.30) 0%,
        rgba(13,13,13,0.82) 40%,
        rgba(13,13,13,0.97) 100%
    );
}

/* Large background number */
.lux-wwd-num {
    position: absolute;
    top: 18px;
    right: 22px;
    font-family: var(--lux-serif);
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(215,179,154,0.14);
    letter-spacing: -2px;
    z-index: 2;
    pointer-events: none;
    transition: color 0.4s ease;
}
.lux-wwd-card:hover .lux-wwd-num {
    color: rgba(215,179,154,0.30);
}

/* Content block — sits at bottom */
.lux-wwd-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 0 28px 28px;
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* Icon circle */
.lux-wwd-icon {
    width: 52px;
    height: 52px;
    border: 1.5px solid rgba(215,179,154,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lux-gold);
    font-size: 20px;
    margin-bottom: 14px;
    background: rgba(215,179,154,0.08);
    transition: var(--lux-trans);
    flex-shrink: 0;
}
.lux-wwd-card:hover .lux-wwd-icon {
    background: var(--lux-gold);
    color: var(--lux-dark);
    border-color: var(--lux-gold);
    transform: scale(1.08);
}

/* Title */
.lux-wwd-title {
    font-family: var(--lux-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0;
    line-height: 1.25;
    transition: color 0.3s ease;
}
.lux-wwd-card:hover .lux-wwd-title {
    color: var(--lux-gold);
}

/* Description — hidden by default, slides up on hover */
.lux-wwd-desc {
    font-family: var(--lux-sans);
    font-size: 13px;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    margin-top: 10px;
    margin-bottom: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.45s ease, margin 0.4s ease;
}
.lux-wwd-card:hover .lux-wwd-desc {
    max-height: 100px;
    opacity: 1;
    margin-bottom: 14px;
}

/* "Discover More" link */
.lux-wwd-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--lux-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--lux-gold) !important;
    text-decoration: none !important;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s, color 0.3s ease;
    pointer-events: none;
    border-bottom: 1px solid rgba(215,179,154,0.3);
    padding-bottom: 2px;
}
.lux-wwd-card:hover .lux-wwd-link {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
.lux-wwd-link i {
    transition: transform 0.3s ease;
}
.lux-wwd-link:hover i {
    transform: translateX(5px);
}

/* Image zoom on hover */
.lux-wwd-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
/* Use transform on the card itself for zoom — simpler approach */
.lux-wwd-card {
    background-attachment: local;
}
.lux-wwd-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    z-index: 0;
    transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
/* Gold left border accent on hover */
.lux-wwd-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--lux-gold);
    z-index: 4;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
}
.lux-wwd-card:hover::after {
    transform: scaleY(1);
}

/* ── Bottom Banner Strip ── */
.lux-wwd-banner {
    background: linear-gradient(135deg, var(--lux-dark) 0%, #16213e 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}
.lux-wwd-banner::before {
    content: '';
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    border: 1px solid rgba(215,179,154,0.06);
    border-radius: 50%;
    pointer-events: none;
}
.lux-wwd-banner-label {
    font-family: var(--lux-sans);
    font-size: 11px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--lux-gold);
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}
.lux-wwd-banner-title {
    font-family: var(--lux-serif);
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 0;
}
.lux-wwd-banner-title em {
    font-style: italic;
    color: var(--lux-gold);
}
.lux-wwd-banner-text {
    font-size: 14.5px;
    color: rgba(255,255,255,0.58);
    line-height: 1.8;
    margin-bottom: 0;
}
.lux-wwd-banner .lux-btn-primary {
    display: inline-block;
    margin-top: 22px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .lux-wwd-card { height: 340px; }
    .lux-wwd-banner { padding: 50px 0; }
    .lux-wwd-banner-title { margin-bottom: 20px; }
}
@media (max-width: 767px) {
    .lux-wwd-card { height: 300px; }
    .lux-wwd-desc { max-height: 80px; opacity: 1; margin-bottom: 10px; }
    .lux-wwd-link { opacity: 1; transform: translateY(0); pointer-events: all; }
    .lux-wwd-banner { padding: 40px 0; }
}

/* ═══════════════════════════════════════════════════
   BLOG SECTION  (#lux-blog)
   High-keyword journal cards with hover lift effect
═══════════════════════════════════════════════════ */
#lux-blog {
    padding: 100px 0 110px;
    background: #faf8f6;
    position: relative;
}
#lux-blog::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--lux-gold), transparent);
}

/* Section sub-text */
.lux-section-sub {
    font-family: var(--lux-sans);
    font-size: 15px;
    color: var(--lux-mid);
    max-width: 620px;
    margin: 16px auto 0;
    line-height: 1.8;
}

/* ── Grid spacing ── */
.lux-blog-grid .col-lg-4 { margin-bottom: 32px; }

/* ── Card ── */
.lux-blog-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    transition: var(--lux-trans);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.lux-blog-card:hover {
    box-shadow: 0 16px 56px rgba(0,0,0,0.14);
    transform: translateY(-6px);
}

/* ── Image wrapper ── */
.lux-blog-img-wrap {
    display: block;
    overflow: hidden;
    position: relative;
    height: 240px;
}
.lux-blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
}
.lux-blog-card:hover .lux-blog-img-wrap img {
    transform: scale(1.07);
}

/* ── Category badge ── */
.lux-blog-cat {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--lux-gold);
    color: #fff;
    font-family: var(--lux-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 2px;
}

/* ── Body ── */
.lux-blog-body {
    padding: 28px 28px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    border-top: 3px solid transparent;
    transition: border-color 0.35s ease;
}
.lux-blog-card:hover .lux-blog-body {
    border-top-color: var(--lux-gold);
}

/* ── Meta ── */
.lux-blog-meta {
    display: flex;
    gap: 18px;
    margin-bottom: 14px;
}
.lux-blog-meta span {
    font-family: var(--lux-sans);
    font-size: 11px;
    color: var(--lux-mid);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.lux-blog-meta span i {
    color: var(--lux-gold);
    margin-right: 5px;
}

/* ── Title ── */
.lux-blog-title {
    font-family: var(--lux-serif);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.35;
    margin: 0 0 14px;
    color: var(--lux-dark);
}
.lux-blog-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}
.lux-blog-title a:hover { color: var(--lux-gold); }

/* ── Excerpt ── */
.lux-blog-excerpt {
    font-family: var(--lux-sans);
    font-size: 13.5px;
    color: #666;
    line-height: 1.75;
    flex: 1;
    margin-bottom: 22px;
}

/* ── Read more link ── */
.lux-blog-readmore {
    font-family: var(--lux-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--lux-gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease, color 0.3s ease;
    margin-top: auto;
}
.lux-blog-readmore:hover {
    gap: 14px;
    color: #b8906e;
    text-decoration: none;
}

/* ── "View All" button — dark border variant for light bg ── */
#lux-blog .lux-btn-outline {
    margin-top: 10px;
    border-color: rgba(26,26,46,0.30);
    color: var(--lux-dark) !important;
}
#lux-blog .lux-btn-outline:hover {
    background: var(--lux-dark);
    color: #fff !important;
    border-color: var(--lux-dark);
}

/* ── Responsive ── */
@media (max-width: 991px) {
    #lux-blog { padding: 70px 0 80px; }
    .lux-blog-img-wrap { height: 210px; }
}
@media (max-width: 767px) {
    #lux-blog { padding: 50px 0 60px; }
    .lux-blog-img-wrap { height: 200px; }
    .lux-blog-title { font-size: 18px; }
    .lux-blog-grid .col-lg-4 { margin-bottom: 24px; }
}

/* ═══════════════════════════════════════════════════════
   INSTAGRAM FEED SECTION  (#lux-instagram)
   Static gallery grid linking to @artcastle_doha
═══════════════════════════════════════════════════════ */

/* ── Header strip ── */
#lux-instagram {
    background: #fff;
    position: relative;
    overflow: hidden;
}
#lux-instagram::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        #f09433,
        #e6683c,
        #dc2743,
        #cc2366,
        #bc1888);
}

.lux-ig-header {
    padding: 44px 0 36px;
    border-bottom: 1px solid rgba(215,179,154,0.15);
}
.lux-ig-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

/* Brand block */
.lux-ig-brand {
    display: flex;
    align-items: center;
    gap: 18px;
}
.lux-ig-avatar {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) border-box;
    flex-shrink: 0;
}
.lux-ig-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.lux-ig-info { display: flex; flex-direction: column; gap: 4px; }
.lux-ig-handle {
    font-family: var(--lux-sans);
    font-size: 18px;
    font-weight: 700;
    color: var(--lux-dark);
    letter-spacing: -0.3px;
}
.lux-ig-tagline {
    font-family: var(--lux-sans);
    font-size: 13px;
    color: #999;
    letter-spacing: 0.2px;
}

/* Follow button */
.lux-ig-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 30px;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff !important;
    font-family: var(--lux-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none !important;
    transition: var(--lux-trans);
    box-shadow: 0 6px 24px rgba(188,24,136,0.25);
}
.lux-ig-follow-btn i { font-size: 16px; }
.lux-ig-follow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(188,24,136,0.35);
    filter: brightness(1.08);
}

/* ── Photo Grid ── */
.lux-ig-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 0;
}

/* Each cell */
.lux-ig-cell {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    text-decoration: none !important;
    background: var(--lux-dark);
}
.lux-ig-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94),
                filter 0.45s ease;
    filter: brightness(0.92);
}
.lux-ig-cell:hover img {
    transform: scale(1.08);
    filter: brightness(0.55);
}

/* Hover overlay */
.lux-ig-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.38s ease;
    z-index: 2;
}
.lux-ig-cell:hover .lux-ig-overlay { opacity: 1; }
.lux-ig-overlay-content {
    display: flex;
    gap: 22px;
    align-items: center;
}
.lux-ig-overlay-content span {
    font-family: var(--lux-sans);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.lux-ig-overlay-content i { font-size: 16px; }

/* Thin separator lines between cells */
.lux-ig-cell + .lux-ig-cell {
    border-left: 1px solid rgba(255,255,255,0.08);
}

/* ── CTA tile (last cell) ── */
.lux-ig-cta-tile {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.lux-ig-cta-tile img { display: none; }
.lux-ig-cta-tile .lux-ig-overlay { display: none; }
.lux-ig-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 12px;
    transition: transform 0.35s ease;
}
.lux-ig-cta-tile:hover .lux-ig-cta-inner { transform: scale(1.05); }
.lux-ig-cta-icon {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #f09433, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    display: block;
}
.lux-ig-cta-text {
    font-family: var(--lux-serif);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 6px;
    display: block;
}
.lux-ig-cta-handle {
    font-family: var(--lux-sans);
    font-size: 11px;
    color: var(--lux-gold);
    letter-spacing: 1px;
    margin-bottom: 14px;
    display: block;
}
.lux-ig-cta-btn {
    font-family: var(--lux-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    padding: 7px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 2px;
    display: inline-block;
    transition: all 0.3s;
}
.lux-ig-cta-tile:hover .lux-ig-cta-btn {
    background: linear-gradient(135deg, #f09433, #bc1888);
    border-color: transparent;
}

/* ── Responsive ── */
@media (max-width: 1199px) {
    .lux-ig-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 767px) {
    .lux-ig-header { padding: 30px 0 24px; }
    .lux-ig-header-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
    .lux-ig-grid { grid-template-columns: repeat(3, 1fr); }
    .lux-ig-cta-tile { display: none; }
    .lux-ig-handle { font-size: 15px; }
}
@media (max-width: 480px) {
    .lux-ig-grid { grid-template-columns: repeat(2, 1fr); }
}

