/* ═══════════════════════════════════════════════
   HOME PAGE — DRAMATIC STORY-DRIVEN DESIGN
   ═══════════════════════════════════════════════ */

/* ---------- CUSTOM CURSOR ---------- */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: difference;
    transition: width 0.3s, height 0.3s, margin 0.3s;
}

/* ---------- PRELOADER ---------- */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
}

.preloader-text {
    font-size: clamp(48px, 12vw, 120px);
    font-weight: 900;
    letter-spacing: 8px;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    color: var(--accent);
    overflow: hidden;
}

.preloader-text span {
    display: inline-block;
}

.preloader-line {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-line-fill {
    width: 0%;
    height: 100%;
    background: var(--accent);
}

.cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 43, 0, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transition: width 0.3s, height 0.3s, border-color 0.3s, margin 0.3s;
}

.cursor-dot.hovering {
    width: 60px;
    height: 60px;
    margin: -26px 0 0 -26px;
    background: rgba(255, 43, 0, 0.15);
    backdrop-filter: blur(4px);
}

.cursor-ring.hovering {
    width: 80px;
    height: 80px;
    margin: -40px 0 0 -40px;
    border-color: var(--accent);
}

/* ---------- HERO SECTION (Centered, Dramatic) ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 2, 3, 0.7) 0%, rgba(2, 2, 3, 0.5) 50%, rgba(2, 2, 3, 0.9) 100%);
    z-index: 1;
}

.hero-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 43, 0, 0.15), transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 92%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.hero-tag .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 12px #22c55e;
    animation: pulseDot 2s ease infinite;
}

@keyframes pulseDot {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }
}

.hero-title {
    font-size: clamp(60px, 12vw, 130px);
    font-weight: 900;
    line-height: 0.9;
    color: var(--offwhite);
    font-family: "Montserrat", sans-serif;
    letter-spacing: -3px;
    margin-bottom: 32px;
}

.hero-title .line {
    display: block;
    overflow: hidden;
    padding-bottom: 10px;
}

.hero-title .line-inner {
    display: block;
    transform: translateY(110%);
}

.hero-title .accent {
    color: var(--accent);
    text-shadow: 0 0 80px var(--accent-glow);
}

.hero-title .serif-accent {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-weight: 700;
    color: var(--accent);
}

.hero-desc {
    font-size: clamp(18px, 3vw, 22px);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}


/* ---------- DRAMATIC STORY SECTION ---------- */
.story-section {
    padding: 180px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--black);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.story-subtitle {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 32px;
}

.story-text {
    font-family: "Playfair Display", serif;
    font-size: clamp(24px, 4vw, 42px);
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.story-text span {
    color: rgba(255, 255, 255, 0.2);
    transition: color 0.4s ease;
}

.story-text span.highlighted {
    color: #fff;
}


/* ---------- MASSIVE SHOWCASE VIDEO ---------- */
.showcase-section {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.showcase-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.showcase-play {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #ff6b35);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 0 50px var(--accent-glow), inset 0 0 20px rgba(255,255,255,0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-play:hover {
    transform: scale(1.15);
    background: linear-gradient(135deg, #ff6b35, var(--accent));
    box-shadow: 0 0 70px var(--accent-glow), inset 0 0 30px rgba(255,255,255,0.3);
}



/* ---------- SERVICES STRIP ---------- */
.services-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.service-item {
    padding: 60px 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--black);
}

.service-item:last-child {
    border-right: none;
}

.service-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s ease;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item h3 {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* ---------- EXPERTISE ---------- */
.expertise-section {
    padding: 160px 0;
    background: var(--black);
}

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

.icon-service {
    text-align: left;
    padding: 48px 32px;
    border-radius: 16px;
    background: #08080a;
    border: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.icon-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.icon-service:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 43, 0, 0.3);
}

.icon-service:hover::before {
    transform: scaleX(1);
}

.icon-service .svc-icon {
    font-size: 40px;
    margin-bottom: 32px;
    line-height: 1;
}

.icon-service .svc-num {
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 100px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    font-family: "Montserrat", sans-serif;
    pointer-events: none;
}

.icon-service h4 {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.icon-service p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
}


/* ---------- FEATURED WORK ---------- */
.work-section {
    padding: 120px 0 160px;
    background: var(--black);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.work-card {
    background: transparent;
    cursor: pointer;
}

.work-card .work-img {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    position: relative;
}

.work-card .work-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.work-card .card-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.work-card .card-title {
    display: block;
    font-size: 28px;
    font-weight: 900;
    margin-top: 8px;
    font-family: "Playfair Display", serif;
}


/* ---------- THE PHILOSOPHY (Stats + Text) ---------- */
.philosophy-section {
    padding: 160px 0;
    background: #08080a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.philosophy-text h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.philosophy-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    max-width: 500px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.stat-item {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-big {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 12px;
    font-family: "Montserrat", sans-serif;
}

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


/* ---------- BIG TESTIMONIAL ---------- */
.testimonial-section {
    padding: 180px 0;
    text-align: center;
}

.testimonial-block {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-block .big-quote {
    font-size: 160px;
    font-family: "Playfair Display", serif;
    color: rgba(255, 43, 0, 0.2);
    line-height: 0.2;
    margin-bottom: 40px;
}

.testimonial-block .quote-text {
    font-size: clamp(24px, 4vw, 42px);
    line-height: 1.4;
    font-style: italic;
    font-family: "Playfair Display", serif;
    margin-bottom: 40px;
}


/* ---------- CTA BAND ---------- */
.cta-band {
    background: var(--accent);
    padding: 140px 20px;
    text-align: center;
}

.cta-band h2 {
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 24px;
}


/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .services-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .icon-services {
        grid-template-columns: repeat(2, 1fr);
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 52px;
    }

    .icon-services {
        grid-template-columns: 1fr;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .services-strip {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .cursor-dot,
    .cursor-ring {
        display: none;
    }
}
