form 
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


:root {
    --bg: #000;
    --text: #fff;
    --border: #222;
    --highlight: #ffff00;
    --font: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --subtle: #666;
    --footer-hover: #888;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font);
    margin: 0;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* SEO Helper: Hidden H1 for Crawlers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

mark { background: var(--highlight); color: #000; padding: 2px; }

/* HEADER */
header {
    display: grid;
    grid-template-columns: 1.8fr 2fr 1.8fr;
    align-items: center;
    padding: 12px 5%;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.header-logo { height: 48px; width: auto; display: block; }
.header-left { display: flex; align-items: center; gap: 25px; }

/* DROPDOWN */
.dropdown { position: relative; }
.drop-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: white;
    width: 45px; height: 45px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
}
.drop-btn:hover { background: white; color: black; }

.dropdown-content {
    visibility: hidden; opacity: 0; transform: translateY(10px);
    position: absolute; background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(15px); min-width: 300px;
    border: 1px solid var(--border); top: calc(100% + 15px);
    left: 0; box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    transition: 0.3s; padding: 10px 0; border-radius: 8px;
}
.dropdown:hover .dropdown-content { visibility: visible; opacity: 1; transform: translateY(0); }
.dropdown-content a {
    color: #aaa; padding: 14px 25px; text-decoration: none; display: block;
    text-transform: uppercase; font-size: 0.75rem; letter-spacing: 1px;
}
.dropdown-content a:hover { color: #fff; background: rgba(255,255,255,0.05); }

/* SEARCH bar */
.search-container { display: flex; justify-content: center; }
.search-box { display: flex; width: 100%; max-width: 400px; border: 1px solid var(--border); }
.search-box input { background: transparent; border: none; color: white; padding: 10px 15px; flex-grow: 1; outline: none; }
.search-box button { background: #fff; color: #000; border: none; padding: 0 20px; cursor: pointer; font-weight: bold; text-transform: uppercase; font-size: 0.7rem; }

.header-right { display: flex; justify-content: flex-end; }

/* HERO AREA */
.hero-logo-wrapper { text-align: center; padding: 80px 5% 15px; }
.main-logo-img { max-width: 400px; height: auto; margin: 0 auto; display: block; }

/* ANIMATED TAGLINE */
.tagline { 
    display: block; 
    text-transform: uppercase; 
    letter-spacing: 5px; 
    margin-top: 5px; 
    color: var(--subtle); 
    font-size: 0.85rem;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ANIMATED BODY STATEMENT */
.hero-statement {
    font-size: 1.6rem; 
    font-weight: 300; 
    text-align: center; 
    color: #efefef; 
    margin-top: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0.2s;
}

.tagline.is-visible, .hero-statement.is-visible {
    opacity: 1;
    transform: translateY(0);
}

section { max-width: 900px; margin: 0 auto; padding: 40px 20px; }

/* COMPACT MODERN FOOTER */
footer {
    margin-top: 190px;
    padding: 40px 5% 20px;
    border-top: 1px solid transparent;
    border-image: linear-gradient(to right, transparent, #333, transparent) 1;
    background: linear-gradient(to bottom, #000, #080808);
}

.footer-container {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-main-grid {
    display: flex;
    justify-content: space-around;
    width: 100%;
    gap: 20px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.footer-section h4 {
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--subtle);
    margin: 0;
}

.footer-link-large {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s;
}

.footer-link-large:hover { color: var(--footer-hover); }

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 5px;
}

.social-icon-link {
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon-link:hover {
    color: var(--footer-hover);
    transform: translateY(-2px);
}

.footer-bottom {
    width: 100%;
    padding-top: 20px;
    border-top: 1px solid #111;
    display: flex;
    justify-content: center;
    opacity: 0.4;
}

.copyright {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

@media (max-width: 768px) {
    header { grid-template-columns: 1fr 1fr; }
    .header-right { display: none; }
    .footer-main-grid { flex-direction: column; text-align: center; gap: 25px; }
    .hero-statement { font-size: 1.3rem; }
}

.about-mission-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr; 
    gap: 70px;                      
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    align-items: start;
}

.column-left, .column-right {
    width: 100%;
}

.column-title {
    font-size: 2.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 700;
    color: #ffffff;
}

.about-mission-grid p {
    line-height: 1.8;
    margin-bottom: 0.5px;
    font-size: 1.2rem;
    color: #ffffff;
}

/* Mobile Responsive: Stacks on phones */
@media (max-width: 800px) {
    .about-mission-grid {
        grid-template-columns: 1fr; 
        gap: 40px;
    }
}



