:root {
    --bg-color: #141414;
    /* Base color from source */
    --text-color: #ffffff;
    --accent-color: #f8a829;
    /* Gold accent from source */
    --secondary-color: #0693e3;
    /* Vivid cyan blue */
    --grey-color: #4F5959;
    /* Grey from source */
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Oswald', sans-serif;
    --container-width: 1200px;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.bg-accent {
    background-color: var(--accent-color);
}

.bg-dark {
    background-color: var(--bg-color);
}

.bg-grey {
    background-color: var(--grey-color);
}

.bg-white {
    background-color: #ffffff;
}

.text-dark {
    color: #141414;
}

.text-dark h1,
.text-dark h2,
.text-dark p {
    color: #141414;
}

/* Header */
.site-header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.site-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #141414;
}

.btn-primary:hover {
    background-color: white;
    color: var(--accent-color);
}

/* Hero Visual */
.hero-visual {
    padding: 150px 0 100px;
    text-align: center;
    background: radial-gradient(circle at center, #2a2a2a 0%, #141414 70%);
}

.hero-logo {
    max-width: 400px;
}

/* Intro */
.intro {
    padding: 80px 0;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #141414;
    /* Dark text on orange */
}

.hero-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #141414;
}

.hero-description p {
    margin-bottom: 20px;
}

/* Sections */
section {
    padding: 80px 0;
}

h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 50px;
    text-align: center;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 10px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* Principles */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.principle-item {
    background: transparent;
    padding: 30px;
    /* border-radius: 10px; */
    /* border: 1px solid #333; */
}

.principle-item h4 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Team */
.team-subtitle {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 50px;
    color: var(--accent-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
}

.team-member {
    background: transparent;
    padding: 40px;
    text-align: center;
}

.team-member h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.team-member .role {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Team Photos */
.team-photo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 5px solid var(--accent-color);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-item {
    background: transparent;
    padding: 30px;
    text-align: center;
}

.service-item h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.service-item ul {
    list-style: none;
    margin-top: 20px;
    text-align: left;
    display: inline-block;
}

.service-item li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.service-item li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

/* Clients */
.clients-intro {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    align-items: center;
}

.client-logo {
    max-height: 60px;
    max-width: 150px;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: none;
    opacity: 1;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.testimonial-item {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
    position: relative;
}

.testimonial-item blockquote p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.testimonial-item cite {
    display: flex;
    flex-direction: column;
    font-style: normal;
}

.testimonial-item .author {
    font-weight: 700;
    color: var(--accent-color);
}

.testimonial-item .position,
.testimonial-item .company {
    font-size: 0.9rem;
    color: #888;
}

/* Contact */
.contact-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer */
.site-footer {
    background: #050505;
    padding: 50px 0 20px;
    margin-top: 0;
    /* Removed margin since sections handle padding */
    border-top: 1px solid #222;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-contact h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #222;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
        /* Simple mobile hide for now */
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Hero Visual with Video */
.hero-visual {
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: transparent;
    /* Remove static gradient if video is present, or keep as fallback */
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    /* Adjust opacity to blend with background color if needed */
}

.hero-visual .container {
    position: relative;
    z-index: 1;
}