/**
 * Lottie Charles Tattoo - Luxury Editorial Dark Theme (Mascot-Free)
 * Typography: Cormorant Garamond, Outfit, Cinzel, Inter
 * Colors: Deep Onyx Charcoal (#0B0D11), Bone Ivory (#F5F2EB), Saffron/Gold Accent (#FF5E31, #D4AF37)
 */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;800&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --le-bg-dark: #07090C;
    --le-bg-card: #101318;
    --le-bg-card-hover: #151A22;
    --le-border: rgba(255, 255, 255, 0.12);
    --le-border-accent: rgba(255, 94, 49, 0.4);
    --le-accent-saffron: #FF5E31;
    --le-accent-gold: #D4AF37;
    --le-accent-cyan: #38BDF8;
    --le-text-white: #FFFFFF;
    --le-text-ivory: #F5F2EB;
    --le-text-muted: #94A3B8;
    --le-text-dim: #64748B;
    --le-font-serif: 'Cormorant Garamond', 'Cinzel', serif;
    --le-font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.lottie-editorial-root {
    width: 100%;
    min-height: 100vh;
    background-color: var(--le-bg-dark);
    color: var(--le-text-ivory);
    font-family: var(--le-font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.lottie-editorial-root * {
    box-sizing: border-box;
}

.le-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================================================================
   HEADER & NAVIGATION
   ========================================================================= */
.le-header {
    padding: 24px 0;
    border-bottom: 1px solid var(--le-border);
    position: sticky;
    top: 0;
    background: rgba(7, 9, 12, 0.85);
    backdrop-filter: blur(12px);
    z-index: 100;
}

.le-nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.le-brand-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--le-text-white);
}

.le-brand-title {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--le-text-white);
    margin: 0;
    line-height: 1.1;
}

.le-brand-subtitle {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--le-accent-saffron);
}

.le-nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.le-nav-link {
    color: var(--le-text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.le-nav-link:hover {
    color: var(--le-text-white);
}

.le-btn-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--le-accent-saffron);
    color: var(--le-text-white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.le-btn-nav-cta:hover {
    background: #FF4411;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 94, 49, 0.35);
}

/* =========================================================================
   HERO SECTION (LUXURY EDITORIAL)
   ========================================================================= */
.le-hero-section {
    padding: 80px 0 60px;
    position: relative;
}

.le-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.le-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--le-accent-saffron);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.le-hero-title {
    font-family: var(--le-font-serif);
    font-size: clamp(42px, 5.5vw, 68px);
    line-height: 1.05;
    font-weight: 700;
    color: var(--le-text-white);
    margin: 0 0 24px;
    letter-spacing: -0.5px;
}

.le-hero-title em {
    font-style: italic;
    color: var(--le-accent-gold);
}

.le-hero-desc {
    font-size: 17px;
    line-height: 1.6;
    color: var(--le-text-muted);
    margin: 0 0 36px;
    max-width: 540px;
}

.le-hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.le-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--le-accent-saffron);
    color: var(--le-text-white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

.le-btn-primary:hover {
    background: #FF4411;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 94, 49, 0.4);
}

.le-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--le-text-white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 15px 30px;
    border-radius: 999px;
    border: 1px solid var(--le-border);
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

.le-btn-secondary:hover {
    border-color: var(--le-text-white);
    background: rgba(255, 255, 255, 0.05);
}

.le-hero-image-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--le-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.le-hero-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.le-hero-image-wrap:hover .le-hero-image {
    transform: scale(1.03);
}

.le-hero-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(180deg, transparent, rgba(7, 9, 12, 0.95) 60%);
}

.le-caption-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--le-accent-saffron);
}

.le-caption-name {
    font-family: var(--le-font-serif);
    font-size: 22px;
    color: var(--le-text-white);
    margin: 2px 0 0;
}

/* =========================================================================
   CAREER HIGHLIGHTS & STATS TAPE (SPOTIFY WRAPPED WITHOUT MASCOT)
   ========================================================================= */
.le-stats-section {
    padding: 30px 0 70px;
}

.le-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.le-stat-box {
    background: var(--le-bg-card);
    border: 1px solid var(--le-border);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.25s ease;
}

.le-stat-box:hover {
    border-color: var(--le-accent-saffron);
    transform: translateY(-4px);
    background: var(--le-bg-card-hover);
}

.le-stat-num {
    font-family: var(--le-font-serif);
    font-size: clamp(38px, 4.5vw, 54px);
    font-weight: 700;
    color: var(--le-text-white);
    line-height: 1;
    margin-bottom: 8px;
}

.le-stat-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--le-text-muted);
}

/* =========================================================================
   SPECIALTIES & SERVICES GRID
   ========================================================================= */
.le-section {
    padding: 70px 0;
}

.le-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.le-section-tag {
    color: var(--le-accent-saffron);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.le-section-title {
    font-family: var(--le-font-serif);
    font-size: clamp(34px, 4.5vw, 52px);
    font-weight: 700;
    color: var(--le-text-white);
    margin: 0 0 12px;
}

.le-section-subtitle {
    font-size: 16px;
    color: var(--le-text-muted);
    max-width: 580px;
    margin: 0 auto;
}

.le-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.le-service-card {
    background: var(--le-bg-card);
    border: 1px solid var(--le-border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.le-service-card:hover {
    border-color: var(--le-accent-saffron);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.le-service-img-wrap {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.le-service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.le-service-card:hover .le-service-img {
    transform: scale(1.06);
}

.le-service-serial {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(7, 9, 12, 0.85);
    color: var(--le-accent-saffron);
    font-size: 12px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid var(--le-border);
}

.le-service-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.le-service-title {
    font-family: var(--le-font-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--le-text-white);
    margin: 0 0 10px;
}

.le-service-desc {
    font-size: 14px;
    color: var(--le-text-muted);
    margin: 0;
    line-height: 1.5;
}

/* =========================================================================
   PORTFOLIO TIMELINE GALLERY (WITH EXPANDABLE READ MORE)
   ========================================================================= */
.le-filter-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 40px;
}

.le-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.le-pill {
    background: var(--le-bg-card);
    border: 1px solid var(--le-border);
    color: var(--le-text-muted);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 8px 18px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.le-pill:hover {
    color: var(--le-text-white);
    border-color: rgba(255, 255, 255, 0.3);
}

.le-pill.active {
    background: var(--le-text-white);
    color: var(--le-bg-dark);
    border-color: var(--le-text-white);
}

.le-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.le-portfolio-card {
    background: var(--le-bg-card);
    border: 1px solid var(--le-border);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.le-portfolio-card:hover {
    border-color: var(--le-accent-saffron);
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.6);
}

.le-card-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    background: #000;
}

.le-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.le-portfolio-card:hover .le-card-img {
    transform: scale(1.05);
}

.le-card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(7, 9, 12, 0.85);
    color: var(--le-accent-gold);
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid var(--le-border);
}

.le-card-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.le-card-cat {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--le-accent-saffron);
    margin-bottom: 4px;
}

.le-card-title {
    font-family: var(--le-font-serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--le-text-white);
    margin: 0 0 8px;
    line-height: 1.3;
}

.le-card-desc {
    font-size: 13px;
    color: var(--le-text-muted);
    line-height: 1.45;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.25s ease;
}

.le-card-desc.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}

.le-read-more-btn {
    background: none;
    border: none;
    padding: 4px 0 0;
    color: var(--le-accent-saffron);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
    display: inline-block;
}

.le-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--le-text-dim);
    border-top: 1px solid var(--le-border);
    padding-top: 10px;
    margin-top: 12px;
}

/* =========================================================================
   ARTIST SPOTLIGHT (LOTTIE CHARLES)
   ========================================================================= */
.le-about-section {
    padding: 80px 0;
    border-top: 1px solid var(--le-border);
    border-bottom: 1px solid var(--le-border);
    background: #090B0E;
}

.le-about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
}

.le-about-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.le-about-img-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--le-border);
}

.le-about-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.le-about-quote {
    font-family: var(--le-font-serif);
    font-size: 24px;
    font-style: italic;
    color: var(--le-text-ivory);
    line-height: 1.4;
    border-left: 3px solid var(--le-accent-saffron);
    padding-left: 20px;
    margin: 24px 0;
}

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */
.le-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.le-testimonial-card {
    background: var(--le-bg-card);
    border: 1px solid var(--le-border);
    border-radius: 20px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.le-testimonial-text {
    font-family: var(--le-font-serif);
    font-size: 19px;
    line-height: 1.5;
    color: var(--le-text-ivory);
    margin-bottom: 20px;
}

.le-client-meta {
    display: flex;
    flex-direction: column;
}

.le-client-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--le-text-white);
}

.le-client-tag {
    font-size: 12px;
    color: var(--le-accent-saffron);
}

/* =========================================================================
   LIGHTBOX MODAL
   ========================================================================= */
.le-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(7, 9, 12, 0.94);
    backdrop-filter: blur(10px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.le-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.le-lightbox-content {
    background: var(--le-bg-card);
    border: 1px solid var(--le-border);
    border-radius: 24px;
    max-width: 580px;
    width: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.le-lightbox-img {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
    display: block;
}

.le-lightbox-body {
    padding: 24px;
}

.le-lightbox-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(7, 9, 12, 0.8);
    border: 1px solid var(--le-border);
    color: var(--le-text-white);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.le-footer {
    padding: 50px 0 30px;
    border-top: 1px solid var(--le-border);
    text-align: center;
    color: var(--le-text-dim);
    font-size: 13px;
}

/* Responsive */
@media (max-width: 900px) {
    .le-hero-grid,
    .le-about-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .le-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .le-nav-links {
        display: none;
    }
}
