/* 1. HOSTINGER-FRIENDLY FONTS */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

/* 2. INSTITUTIONAL DESIGN TOKENS */
:root {
    --lhc-gold: #C5A367;
    --lhc-gold-glow: rgba(197, 163, 103, 0.3);
    --lhc-black: #0B0B0B;
    --lhc-dark-grey: #121212;
    --lhc-white: #F9F9F9;
    --lhc-text-grey: #888888;
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 3. CORE BASE */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    background-color: var(--lhc-black); 
    color: var(--lhc-white); 
    font-family: 'Inter', sans-serif; 
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
.container { max-width: 1400px; margin: 0 auto; padding: 0 3rem; }
.serif { font-family: 'Libre Baskerville', serif; font-weight: 400; }
.gold-text { color: var(--lhc-gold); }
.italic { font-style: italic; color: var(--lhc-text-grey); }
strong { color: var(--lhc-gold); font-weight: 600; }

/* 4. NAVIGATION */
.navbar {
    padding: 1.5rem 0;
    background: rgba(11, 11, 11, 0.98);
    border-bottom: 1px solid rgba(255,255,255,0.03);
    position: fixed; width: 100%; top: 0; z-index: 1000;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.nav-logo-img { height: 40px; width: auto; image-rendering: -webkit-optimize-contrast; }
.nav-links { display: flex; align-items: center; gap: 4rem; }
.nav-links a { 
    text-decoration: none; color: var(--lhc-white); font-size: 10px; 
    text-transform: uppercase; letter-spacing: 3px; font-weight: 600; 
    transition: var(--transition); opacity: 0.6;
}
.nav-links a:hover { opacity: 1; color: var(--lhc-gold); }
.nav-cta { border: 1px solid var(--lhc-gold); padding: 0.8rem 1.8rem !important; opacity: 1 !important; }

/* 5. UPDATED HERO SECTION WITH GLOW */
.hero { 
    padding: 14rem 0 10rem; 
    background: radial-gradient(
        circle at center, 
        rgba(197, 163, 103, 0.12) 0%, 
        rgba(11, 11, 11, 1) 75%
    );
    min-height: 90vh; 
    display: flex; 
    align-items: center;
    position: relative;
    overflow: hidden;
}

.main-hero-logo { 
    max-width: 550px; 
    width: 85%; 
    margin-bottom: 4rem; 
    filter: drop-shadow(0 0 25px var(--lhc-gold-glow)) 
            drop-shadow(0 15px 40px rgba(0,0,0,0.6));
    animation: lhcEntrance 2s ease-out;
    image-rendering: -webkit-optimize-contrast;
}

@keyframes lhcEntrance { 
    0% { opacity: 0; transform: translateY(20px); filter: drop-shadow(0 0 0px transparent); } 
    100% { opacity: 1; transform: translateY(0); filter: drop-shadow(0 0 25px var(--lhc-gold-glow)); } 
}

.tagline { color: var(--lhc-gold); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 6px; margin-bottom: 2rem; text-align: center; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: 2.5rem; letter-spacing: -1px; text-align: center; width: 100%; }
.hero-description { font-size: 1.2rem; color: var(--lhc-text-grey); max-width: 650px; margin: 0 auto 4rem; font-weight: 300; text-align: center; }
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 3rem; }
.parent-brand { font-size: 10px; text-transform: uppercase; letter-spacing: 3px; color: #444; font-weight: 700; border-left: 1px solid #222; padding-left: 3rem; }

/* 6. PHILOSOPHY */
.philosophy { padding: 12rem 0; background: #0e0e0e; }
.grid-2 { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 6rem; align-items: center; }
.phi-title h2 { font-size: 3rem; line-height: 1.3; }
.phi-content p { color: var(--lhc-text-grey); margin-bottom: 3rem; font-size: 1.15rem; font-weight: 300; }
.standards-list { list-style: none; }
.standards-list li { 
    margin-bottom: 1.2rem; border-left: 1px solid var(--lhc-gold); padding-left: 2rem;
    font-size: 11px; text-transform: uppercase; letter-spacing: 3px; font-weight: 700; color: var(--lhc-gold);
}

/* 7. OPERATIONS GRID */
.operations { padding: 12rem 0; }
.section-header { margin-bottom: 6rem; text-align: center; }
.label { font-size: 11px; text-transform: uppercase; letter-spacing: 5px; color: var(--lhc-gold); font-weight: 700; margin-bottom: 1rem; display: block; }
.structured-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1px; background: #222; border: 1px solid #222; }
.grid-card { background: var(--lhc-black); padding: 5rem 3.5rem; transition: var(--transition); position: relative; }
.grid-card:hover { background: #111; }
.card-num { position: absolute; top: 2.5rem; right: 2.5rem; font-size: 10px; color: #333; font-weight: 800; }
.grid-card h3 { font-family: 'Libre Baskerville', serif; margin-bottom: 1.5rem; font-size: 1.4rem; color: var(--lhc-gold); }
.grid-card p { font-size: 0.95rem; color: #777; font-weight: 300; }

/* 8. INTAKE PORTAL */
.intake-section { padding: 12rem 0; background: #080808; border-top: 1px solid #111; }
.intake-header { text-align: center; margin-bottom: 5rem; }
.lhc-form { max-width: 800px; margin: 0 auto; background: var(--lhc-black); padding: 4rem; border: 1px solid #1a1a1a; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.form-group { margin-bottom: 2rem; display: flex; flex-direction: column; }
.form-group label { font-size: 10px; text-transform: uppercase; letter-spacing: 2px; color: var(--lhc-gold); margin-bottom: 1rem; font-weight: 700; }
.form-group input, .form-group select { 
    background: #151515; border: 1px solid #222; padding: 1.2rem; color: white; 
    font-family: 'Inter', sans-serif; transition: var(--transition);
}
.form-group input:focus { outline: none; border-color: var(--lhc-gold); }

/* 9. BUTTONS & FOOTER */
.btn-primary { 
    background: var(--lhc-gold); color: var(--lhc-black); text-decoration: none; padding: 1.4rem 3.5rem; 
    font-size: 11px; text-transform: uppercase; letter-spacing: 3px; font-weight: 800; transition: var(--transition);
    display: inline-block; border: none; cursor: pointer;
    box-shadow: 0 0 0px transparent;
}
.btn-primary:hover { 
    transform: translateY(-4px); 
    box-shadow: 0 10px 30px rgba(197, 163, 103, 0.2); 
}
.btn-outline { 
    border: 1px solid #222; color: white; text-decoration: none; padding: 1.4rem 4rem; 
    font-size: 11px; text-transform: uppercase; letter-spacing: 3px; font-weight: 700; transition: var(--transition);
    display: inline-block;
}
.btn-outline:hover { border-color: var(--lhc-gold); color: var(--lhc-gold); }

.footer { background: #050505; padding: 12rem 0 4rem; text-align: center; }
.footer h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1.5rem; }
.footer-bottom { margin-top: 10rem; padding-top: 3rem; border-top: 1px solid #111; display: flex; justify-content: space-between; align-items: center; }
.footer-logo-img { height: 28px; opacity: 0.4; }
.copyright { font-size: 9px; color: #333; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; }

/* 10. RESPONSIVENESS */
@media (max-width: 900px) {
    .grid-2 { grid-template-columns: 1fr; gap: 4rem; }
    .nav-links { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; gap: 2rem; }
    .parent-brand { border-left: none; padding-left: 0; border-top: 1px solid #222; padding-top: 2rem; }
}