@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Montserrat:wght@300;400;700&display=swap');

:root {
    --bg-white: #FFFFFF;
    --text-deep: #1A1A1A;
    --accent-black: #000000;
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --nav-height: 80px;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-white);
    color: var(--text-deep);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition-smooth);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: var(--transition-smooth);
}

.nav-links a:hover::after {
    width: 100%;
}

nav.scrolled .nav-links a {
    color: var(--text-deep);
}

nav.scrolled .nav-links a::after {
    background: var(--text-deep);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-cta {
    padding: 10px 20px !important;
    font-size: 0.64rem !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    width: 28px;
    height: 2px;
    background: white;
    transition: var(--transition-smooth);
}

nav.scrolled .mobile-toggle span {
    background: var(--text-deep);
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    height: 70px;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.05);
}

.logo img {
    height: 100px;
    transition: var(--transition-smooth);
}

nav.scrolled .logo img {
    height: 44px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    background-color: #111;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 600;
    margin-bottom: 25px;
    margin-top: 50px;
    line-height: 1;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1.2s forwards 0.5s;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 300;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1.2s forwards 0.8s;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--accent-black);
    color: white;
}

.btn-primary:hover {
    background-color: #333;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Sections */
section {
    padding: 140px 10%;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.section-title.reveal {
    opacity: 1;
    transform: translateY(0);
}

.section-title h2 {
    font-size: 2.8rem;
    position: relative;
    display: inline-block;
    padding-bottom: 25px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-black);
}

/* Manifesto */
.manifesto {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.manifesto p {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-deep);
    opacity: 0;
    transform: scale(0.95);
    transition: var(--transition-smooth) 0.3s;
}

.manifesto.reveal p {
    opacity: 1;
    transform: scale(1);
}

/* Verticals */
.verticals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.vertical-column {
    background: #fff;
    padding: 50px;
    border: 1px solid #f0f0f0;
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateY(50px);
}

.vertical-column.reveal {
    opacity: 1;
    transform: translateY(0);
}

.vertical-column:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    border-color: #eee;
}

.vertical-column h3 {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--accent-black);
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 20px;
}

.brand-list {
    list-style: none;
}

.brand-item {
    margin-bottom: 45px;
    text-align: center;
}

.brand-logo-container {
    height: 100px;
    width: 100%;
    max-width: 250px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 4px;
    padding: 15px;
    transition: var(--transition-smooth);
    border: 1px solid #f0f0f0;
}

.brand-item:hover .brand-logo-container {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: #e0e0e0;
}

.brand-logo-img {
    max-width: 180px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.brand-item:hover .brand-logo-img {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-name {
    display: block;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.brand-desc {
    display: block;
    font-size: 0.9rem;
    color: #777;
    font-weight: 300;
}

/* Leadership */
.leadership {
    background: #1A1A1A;
    color: white;
    display: flex;
    align-items: center;
    gap: 100px;
    padding: 160px 10%;
}

.leadership-img {
    flex: 1;
    max-width: 500px;
    opacity: 0;
    transform: translateX(-50px);
    transition: var(--transition-smooth);
}

.leadership.reveal .leadership-img {
    opacity: 1;
    transform: translateX(0);
}

.leadership-img img {
    width: 100%;
    filter: grayscale(100%);
    transition: var(--transition-smooth);
    box-shadow: 30px 30px 0px rgba(255, 255, 255, 0.05);
}

.leadership-img img:hover {
    filter: grayscale(0%);
}

.leadership-content {
    flex: 1.5;
    opacity: 0;
    transform: translateX(50px);
    transition: var(--transition-smooth) 0.3s;
}

.leadership.reveal .leadership-content {
    opacity: 1;
    transform: translateX(0);
}

.leadership-vision {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 300;
    color: #ccc;
}

.leadership-quote {
    font-size: 2.2rem;
    color: #fff;
    font-style: italic;
    border-left: 5px solid white;
    padding-left: 40px;
    margin-top: 50px;
    line-height: 1.3;
}

/* Contact */
.contact {
    background: #fafafa;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.contact-container.reveal {
    opacity: 1;
    transform: translateY(0);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #666;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 20px;
    border: 1px solid #e0e0e0;
    font-family: var(--font-primary);
    outline: none;
    transition: var(--transition-smooth);
    background: white;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-black);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* Footer */
footer {
    background: #000;
    color: #777;
    padding: 120px 10% 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 80px;
    margin-bottom: 100px;
}

.footer-logo img {
    height: 200px;
    filter: brightness(0) invert(1);
    margin-bottom: 30px;
}

.footer-info h4 {
    color: white;
    margin-bottom: 30px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #777;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 8px;
}

.footer-bottom {
    border-top: 1px solid #111;
    padding-top: 60px;
    font-size: 0.8rem;
    text-align: center;
    letter-spacing: 1px;
    color: #444;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .leadership {
        gap: 50px;
    }
}

@media (max-width: 992px) {
    section {
        padding: 100px 5%;
    }

    .verticals-grid {
        grid-template-columns: 1fr;
    }

    .leadership {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .leadership-img {
        max-width: 100%;
        transform: translateY(30px);
    }

    .leadership-content {
        transform: translateY(30px);
    }

    .leadership-quote {
        border-left: none;
        border-top: 2px solid white;
        padding-left: 0;
        padding-top: 40px;
        font-size: 1.8rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}