.edgewood-embers-landing {
    background-color: #121212;
    color: #e0e0e0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow: hidden;
}

.embers-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.embers-container-narrow {
    max-width: 760px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* HERO SECTION */
.embers-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: radial-gradient(circle at center, #261710 0%, #121212 100%);
    border-bottom: 1px solid #222;
}

.embers-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(245, 166, 35, 0.15) 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
}

.embers-hero-content {
    position: relative;
    max-width: 900px;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 0 40px rgba(245, 166, 35, 0.4);
}

.hero-subheading {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: #b0b0b0;
    margin-bottom: 40px;
    line-height: 1.5;
}

.btn-ember {
    display: inline-block;
    background-color: #F5A623;
    color: #121212;
    padding: 16px 40px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(245, 166, 35, 0.3);
}

.btn-ember:hover {
    background-color: #fff;
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* EXPERIENCE SECTION */
.embers-experience {
    background: #161616;
    border-bottom: 1px solid #222;
}

.cols-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ember-quote {
    position: relative;
    margin: 0 0 30px 0;
    padding-left: 20px;
    border-left: 4px solid #F5A623;
}

.quote-mark {
    position: absolute;
    top: -20px;
    left: 10px;
    font-size: 5rem;
    color: rgba(245, 166, 35, 0.1);
    font-family: serif;
    line-height: 1;
}

.ember-quote p {
    font-size: 1.35rem;
    font-style: italic;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.ember-quote cite {
    font-size: 0.95rem;
    color: #F5A623;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.experience-desc {
    color: #aaa;
    font-size: 1.1rem;
}

.experience-video {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.video-placeholder-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}

.video-placeholder-wrapper iframe {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

/* SHOWCASE SECTION */
.embers-showcase {
    background: #121212;
}

.text-center { text-align: center; }

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 60px;
    color: #fff;
}

.artifact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.artifact-row.invert {
    direction: ltr;
}

.artifact-media {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* CAROUSEL SLIDER STYLES */
.artifact-gallery-slider {
    position: relative;
    width: 100%;
    max-width: 440px;
    border: 1px solid #332115;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.1);
    background-color: #1a1a1a;
}

.artifact-slides-container {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 4:3 Aspect Ratio */
    height: 0;
}

.artifact-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artifact-slide.active {
    opacity: 1;
    z-index: 2;
}

.artifact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
    padding: 0 15px;
    box-sizing: border-box;
    pointer-events: none;
}

.carousel-nav-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #F5A623;
    background: rgba(18, 18, 18, 0.85);
    color: #F5A623;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.carousel-nav-btn:hover {
    background: #F5A623;
    color: #121212;
}

.placeholder-graphic {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 280px;
    background: linear-gradient(135deg, #1c1c1c 0%, #261c12 100%);
    border: 1px solid #332115;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.placeholder-icon {
    font-size: 4.5rem;
    z-index: 2;
    filter: drop-shadow(0 0 15px rgba(245, 166, 35, 0.4));
}

.pulse-ring {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(245, 166, 35, 0.2);
    border-radius: 50%;
    animation: pulse 3s infinite ease-out;
}

@keyframes pulse {
    0% { transform: scale(0.6); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

.artifact-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.ember-glow {
    color: #F5A623;
}

.artifact-text {
    color: #b0b0b0;
    font-size: 1.05rem;
    margin-bottom: 15px;
}

/* BIOGRAPHY SECTION */
.embers-biography {
    background: #191919;
    border-top: 1px solid #222;
}

.creator-avatar-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.creator-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #F5A623;
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.25);
    transition: transform 0.3s ease;
}

.creator-avatar:hover {
    transform: scale(1.05);
}

.bio-section {
    margin-bottom: 40px;
}

.bio-heading {
    font-size: 1.85rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.bio-text {
    color: #b8b8b8;
    font-size: 1.15rem;
    line-height: 1.7;
}

.ember-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #F5A623, transparent);
    margin: 50px 0;
}

.bio-social {
    margin-top: 25px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    color: #F5A623;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.social-link:hover {
    color: #fff;
}

/* RESPONSIVENESS */
@media (max-width: 991px) {
    .cols-2, .artifact-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .artifact-row.invert {
        display: flex;
        flex-direction: column-reverse;
    }
}
