/* ==========================================
    AGENCY DESIGN SYSTEM & VARIABLES
    ========================================== */
:root {
    /* Backgrounds */
    --color-bg-main: #121212;
    --color-bg-secondary: #1A1A1A;
    --color-bg-deep: #0A0A0A;
    --color-bg-navy: #060B19;

    /* Brand Colors */
    --color-brand-gold: #C6A675;
    --color-brand-teal: #267A78;
    --color-brand-blue: #184DB3;
    --color-brand-periwinkle: #6479D1;
    --color-brand-rose: #D09492;
    --color-brand-taupe: #867D7A;

    /* Typography */
    --color-text-primary: #FFFFFF;
    --color-text-muted: #9CA3AF;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    
    /* Utilities */
    --transition-fast: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --border-light: rgba(255, 255, 255, 0.08);
    --radius-lg: 24px;
}

/* Reset & Base Setup */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 14.5px; } 

body {
    font-family: var(--font-main);
    background-color: var(--color-bg-main);
    color: var(--color-text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Accessibility: Visible Focus States */
*:focus-visible {
    outline: 2px solid var(--color-brand-gold);
    outline-offset: 4px;
}

/* Ambient Orbs */
.ambient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.22;
    z-index: -1;
    pointer-events: none;
}
.orb-1 { top: -15%; left: -10%; width: 45vw; height: 45vw; background: var(--color-brand-teal); }
.orb-2 { bottom: 5%; right: -5%; width: 40vw; height: 40vw; background: var(--color-brand-rose); }
.orb-3 { top: 35%; left: 50%; width: 35vw; height: 35vw; background: var(--color-brand-periwinkle); opacity: 0.15; transform: translate(-50%, -50%); }
.orb-4 { bottom: -10%; left: 10%; width: 30vw; height: 30vw; background: var(--color-brand-gold); opacity: 0.12; }

/* Typography */
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; color: var(--color-text-primary); }
h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); } 
h2 { font-size: clamp(2rem, 4vw, 3.2rem); } 
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); } 
h4 { font-size: 1.05rem; }
p { font-size: 0.95rem; font-weight: 400; color: var(--color-text-muted); }

.text-accent-gradient {
    background: linear-gradient(135deg, var(--color-brand-gold), var(--color-brand-rose));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.dot-teal { color: var(--color-brand-teal); }
.dot-gold { color: var(--color-brand-gold); }

/* Layout */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 5%; }
section { padding: 140px 0; position: relative; }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }

/* Buttons */
.btn-wrap { display: flex; gap: 1.2rem; flex-wrap: wrap; margin-top: 2.5rem; }
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 1rem 2.2rem; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.02em;
    border-radius: 100px; cursor: pointer; transition: var(--transition-smooth);
    text-align: center; border: 1px solid transparent;
}
.btn-primary { background-color: var(--color-text-primary); color: var(--color-bg-main); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255,255,255,0.15); background-color: var(--color-brand-gold); color: #fff; }

.btn-outline { background-color: transparent; color: var(--color-text-primary); border-color: var(--border-light); backdrop-filter: blur(10px); }
.btn-outline:hover { border-color: var(--color-brand-teal); color: var(--color-brand-teal); background-color: rgba(38,122,120,0.05); transform: translateY(-3px); }

.btn-subtle { background-color: transparent; color: var(--color-text-primary); opacity: 0.7; padding: 1rem 1.5rem; }
.btn-subtle:hover { opacity: 1; transform: translateY(-3px); background-color: rgba(255,255,255,0.03); border-radius: 100px; }

/* Scroll Animations */
.fade-up { opacity: 0; transform: translateY(30px); transition: var(--transition-smooth); }
.fade-up.in-view { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ==========================================
    HEADER & NAVIGATION
    ========================================== */
header { position: fixed; top: 0; width: 100%; z-index: 100; padding: 1.5rem 0; transition: var(--transition-smooth); }
header.scrolled { padding: 1rem 0; background: rgba(18,18,18,0.9); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-light); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; }

/* LOGO SIZING (UPDATED) */
.logo img { width: 200px; height: auto; transition: var(--transition-fast); display: block; }
.logo:hover img { opacity: 0.7; }

.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a.nav-item { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-text-primary); position: relative; }
.nav-links a.nav-item::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--color-brand-gold); transition: var(--transition-smooth); }
.nav-links a.nav-item:hover::after { width: 100%; }

.nav-cta { padding: 0.75rem 1.5rem; font-size: 0.8rem; }
.menu-btn { display: none; background: none; border: none; color: #fff; font-size: 1.8rem; cursor: pointer; padding: 0.5rem; }

/* ==========================================
    HERO
    ========================================== */
.hero { min-height: 85vh; display: flex; align-items: center; padding-top: 140px; padding-bottom: 60px; }
.hero-content { max-width: 850px; }
.hero h1 { margin-bottom: 1.2rem; }
.hero p { font-size: clamp(1.05rem, 1.2vw, 1.2rem); max-width: 600px; color: var(--color-text-muted); }

/* ==========================================
    STRATEGY SECTION
    ========================================== */
.strategy-section {
    padding: 120px 0;
    margin: 0 5% 60px;
    background-color: var(--color-bg-navy);
    background-image: 
        radial-gradient(circle at 100% 0%, rgba(24, 77, 179, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 0% 100%, rgba(100, 121, 209, 0.08) 0%, transparent 60%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(100, 121, 209, 0.15);
    text-align: center;
}
.strategy-content { max-width: 900px; margin: 0 auto; padding: 0 2rem; }
.strategy-content h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--color-brand-gold);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.strategy-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--color-text-primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}
.strategy-content p { font-size: 1rem; color: var(--color-text-muted); max-width: 650px; margin: 0 auto; }

/* ==========================================
    WHAT WE DO
    ========================================== */
.service-rows { margin-top: 3rem; border-top: 1px solid var(--border-light); }
.service-row { display: grid; grid-template-columns: 60px 1fr 2fr; align-items: center; padding: 2rem 1rem; border-bottom: 1px solid var(--border-light); cursor: pointer; transition: var(--transition-smooth); }

.service-row:nth-child(1):hover { background-color: var(--color-brand-teal); padding-left: 2rem; border-bottom-color: transparent; }
.service-row:nth-child(2):hover { background-color: var(--color-brand-blue); padding-left: 2rem; border-bottom-color: transparent; }
.service-row:nth-child(3):hover { background-color: var(--color-brand-periwinkle); padding-left: 2rem; border-bottom-color: transparent; }
.service-row:nth-child(4):hover { background-color: var(--color-brand-rose); padding-left: 2rem; border-bottom-color: transparent; }

.service-row:hover * { color: #fff; }
.s-num { font-size: 0.9rem; font-weight: 500; color: var(--color-text-muted); transition: var(--transition-fast); }
.s-title { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; transition: var(--transition-fast); margin: 0; }
.s-desc { font-size: 0.95rem; color: var(--color-text-muted); transition: var(--transition-fast); justify-self: end; text-align: right; max-width: 300px; margin: 0; }

/* ==========================================
    BRAND STRATEGY
    ========================================== */
.editorial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 4rem; }
.ed-card { padding: 3rem 2.5rem; border: 1px solid var(--border-light); border-radius: var(--radius-lg); background: var(--color-bg-secondary); transition: var(--transition-smooth); }

.ed-card:nth-child(1):hover { border-color: var(--color-brand-teal); transform: translateY(-5px); background: rgba(38,122,120,0.05); }
.ed-card:nth-child(2):hover { border-color: var(--color-brand-gold); transform: translateY(-5px); background: rgba(198,166,117,0.05); }
.ed-card:nth-child(3):hover { border-color: var(--color-brand-periwinkle); transform: translateY(-5px); background: rgba(100,121,209,0.05); }
.ed-card:nth-child(4):hover { border-color: var(--color-brand-rose); transform: translateY(-5px); background: rgba(208,148,146,0.05); }

.ed-number { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 2rem; display: block; }
.ed-card:nth-child(1) .ed-number { color: var(--color-brand-teal); }
.ed-card:nth-child(2) .ed-number { color: var(--color-brand-gold); }
.ed-card:nth-child(3) .ed-number { color: var(--color-brand-periwinkle); }
.ed-card:nth-child(4) .ed-number { color: var(--color-brand-rose); }

.ed-card h3 { margin-bottom: 0.8rem; }

/* ==========================================
    HOW WE WORK (Connected Journey)
    ========================================== */
.process-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 2rem; 
    margin-top: 5rem; 
}
.step { 
    padding-top: 2rem; 
    position: relative; 
    transition: var(--transition-smooth);
}
.step::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: var(--border-light); transition: var(--transition-smooth);
}
.step::after {
    content: ''; position: absolute; top: -4px; left: 0; width: 9px; height: 9px;
    border-radius: 50%; background: var(--color-text-muted); transition: var(--transition-smooth);
}
.step:hover::before { background: var(--color-brand-gold); }
.step:hover::after { background: var(--color-brand-gold); box-shadow: 0 0 12px rgba(198, 166, 117, 0.6); }

.step-num { 
    font-size: 2.5rem; font-weight: 800; color: transparent; 
    -webkit-text-stroke: 1px var(--color-text-muted); opacity: 0.5; 
    line-height: 1; margin-bottom: 1.2rem; display: block; 
    transition: var(--transition-smooth);
}
.step:hover .step-num { -webkit-text-stroke: 1px var(--color-brand-gold); opacity: 1; }
.step h3 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--color-text-primary); }

/* ==========================================
    WHY ENLEEP
    ========================================== */
.why-section { 
    background-color: var(--color-bg-secondary); 
    border-radius: var(--radius-lg); 
    padding: 7rem 5%; 
    margin: 0 2%; 
    border: 1px solid var(--border-light); 
    text-align: center;
}
.why-header { max-width: 800px; margin: 0 auto; }
.why-header h2 { margin-bottom: 1rem; }
.why-header p { font-size: 1.15rem; font-weight: 500; color: var(--color-text-primary); }

.why-grid { 
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; 
    margin-top: 4rem; text-align: left;
}
.why-card { 
    background-color: var(--color-bg-main); 
    padding: 3.5rem 2.5rem; 
    border-radius: var(--radius-lg); 
    border: 1px solid var(--border-light); 
    transition: var(--transition-smooth);
    display: flex; flex-direction: column;
}
.why-card:nth-child(1):hover { border-color: var(--color-brand-rose); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(208, 148, 146, 0.05); }
.why-card:nth-child(2):hover { border-color: var(--color-brand-periwinkle); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(100, 121, 209, 0.05); }
.why-card:nth-child(3):hover { border-color: var(--color-brand-teal); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(38, 122, 120, 0.05); }

.why-card-num { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; color: var(--color-text-muted); margin-bottom: 1.5rem; display: block; }
.why-card h4 { font-size: 1.2rem; margin-bottom: 1rem; color: var(--color-text-primary); }

.why-footer { margin-top: 4rem; font-size: 1rem; font-weight: 600; color: var(--color-brand-gold); letter-spacing: 0.02em; }

/* ==========================================
    FAQ SECTION
    ========================================== */
.faq-container { max-width: 800px; margin: 4rem auto 0; border-top: 1px solid var(--border-light); }

.faq-item { border-bottom: 1px solid var(--border-light); transition: var(--transition-fast); }
.faq-question {
    width: 100%; text-align: left; background: none; border: none; font-family: inherit;
    font-size: 1.1rem; font-weight: 600; color: var(--color-text-primary);
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; padding: 1.5rem 0; margin: 0; transition: var(--transition-fast);
}
.faq-question:hover { color: var(--color-brand-gold); }

.faq-icon {
    position: relative; width: 1.5rem; height: 1.5rem; display: flex; align-items: center; justify-content: center;
    color: var(--color-brand-teal); font-size: 1.5rem; font-weight: 300; flex-shrink: 0; margin-left: 1rem;
}
.faq-icon::before { content: '+'; position: absolute; }
.faq-question[aria-expanded="true"] .faq-icon::before { content: '−'; }

.faq-answer-wrapper {
    display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-question[aria-expanded="true"] + .faq-answer-wrapper { grid-template-rows: 1fr; }
.faq-answer { overflow: hidden; }
.faq-answer p { margin-top: 0; margin-bottom: 1.5rem; font-size: 0.95rem; color: var(--color-text-muted); line-height: 1.6; padding-right: 2rem; }

/* ==========================================
    DUAL CTA SECTION (Brands & Creators)
    ========================================== */
.cta-section { 
    padding: 160px 0; 
    background-color: var(--color-bg-navy);
    background-image: radial-gradient(circle at 50% 0%, rgba(24, 77, 179, 0.1) 0%, transparent 60%);
    border-top: 1px solid rgba(100, 121, 209, 0.15);
}
.cta-header { text-align: center; max-width: 800px; margin: 0 auto 4rem; }

.dual-contact { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.contact-card { padding: 3.5rem 2.5rem; border-radius: var(--radius-lg); transition: var(--transition-smooth); display: flex; flex-direction: column; justify-content: space-between; }

/* Primary Card (Brands) */
.contact-card.primary-card {
    background: linear-gradient(145deg, rgba(24, 77, 179, 0.08) 0%, rgba(10, 10, 10, 0.4) 100%);
    border: 1px solid rgba(100, 121, 209, 0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.contact-card.primary-card:hover {
    border-color: var(--color-brand-periwinkle);
    background: linear-gradient(145deg, rgba(24, 77, 179, 0.15) 0%, rgba(10, 10, 10, 0.4) 100%);
    transform: translateY(-5px);
}
.contact-card.primary-card .btn-primary { background-color: var(--color-brand-periwinkle); color: #fff; }
.contact-card.primary-card .btn-primary:hover { background-color: var(--color-brand-blue); }

/* Secondary Card (Creators) */
.contact-card.secondary-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-light);
}
.contact-card.secondary-card:hover {
    border-color: rgba(208, 148, 146, 0.4);
    background: rgba(208, 148, 146, 0.05);
    transform: translateY(-5px);
}
.contact-card.secondary-card .btn-outline { border-color: rgba(255,255,255,0.2); }
.contact-card.secondary-card .btn-outline:hover { border-color: var(--color-brand-rose); color: var(--color-brand-rose); }

.eyebrow { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-text-muted); margin-bottom: 1rem; }
.contact-card h3 { font-size: 1.8rem; margin-bottom: 0.8rem; }
.contact-card p { margin-bottom: 2.5rem; min-height: 60px; }

/* ==========================================
    FOOTER
    ========================================== */
footer { padding: 80px 0 0; background-color: var(--color-bg-main); border-top: 1px solid var(--border-light); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }

/* LOGO SIZING (UPDATED) */
.footer-logo { width: 200px; height: auto; margin-bottom: 1.5rem; display: block; }
.footer-desc { color: var(--color-text-muted); max-width: 280px; font-size: 0.95rem; line-height: 1.6; }

.footer-links h4 { font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1.5rem; color: var(--color-text-primary); }
.footer-links ul li { margin-bottom: 0.85rem; }
.footer-links a { font-size: 0.95rem; color: var(--color-text-muted); transition: var(--transition-fast); }
.footer-links a:hover { color: var(--color-brand-gold); }

/* Premium Brand Statement */
.footer-statement { text-align: center; padding: 4rem 0; border-top: 1px solid var(--border-light); margin-top: 2rem; }
.statement-title { display: block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.2em; color: var(--color-brand-teal); margin-bottom: 0.8rem; text-transform: uppercase; }
.footer-statement p { font-size: 1.15rem; color: var(--color-text-primary); font-weight: 400; margin: 0; }

.footer-bottom { border-top: 1px solid var(--border-light); padding: 2rem 0; display: flex; justify-content: space-between; align-items: center; color: var(--color-text-muted); font-size: 0.8rem; }
.footer-bottom a { transition: var(--transition-fast); }
.footer-bottom a:hover { color: var(--color-brand-gold); }

/* ==========================================
    RESPONSIVE DESIGN (INCLUDING NEW LOGO RULES)
    ========================================== */
@media (max-width: 1024px) {
    .logo img { width: 185px; } 
    .footer-logo { width: 180px; }
    .service-row { grid-template-columns: 40px 1fr; gap: 1rem; }
    .s-desc { display: none; }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem 2rem; }
    .why-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .footer-grid { gap: 2rem; }
}

@media (max-width: 768px) {
    .logo img { width: 160px; }
    .footer-logo { width: 165px; }
    section { padding: 80px 0; }
    .nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--color-bg-secondary); flex-direction: column; padding: 2rem; border-bottom: 1px solid var(--border-light); }
    .nav-links.active { display: flex; }
    .menu-btn { display: block; }
    
    .hero { padding-top: 120px; min-height: auto; text-align: center; }
    .hero-content { margin: 0 auto; }
    .hero p { margin: 0 auto; }
    .hero .btn-wrap { justify-content: center; }
    
    .strategy-section { padding: 60px 5%; margin: 20px 0 40px; border-radius: 0; border-left: none; border-right: none; }
    
    .process-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .step::after { left: 0; } /* Segmented timeline stacking for mobile */
    
    .why-section { padding: 4rem 5%; margin: 0; border-radius: 0; border-left: none; border-right: none; }
    .why-grid { grid-template-columns: 1fr; gap: 2rem; }
    
    .contact-card { padding: 2.5rem 1.5rem; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; margin-bottom: 2rem; }
    .footer-statement { padding: 3rem 5%; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}