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

body {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    color: #4A4A4A;
    background: #fff;
    line-height: 1.7;
}

h1, h2, h3 {
    font-family: Raleway, sans-serif;
    font-weight: 700;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* Header / Nav */
.site-header {
    position: relative;
    background: rgba(0, 0, 0, 0.56);
    z-index: 10;
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
}
.logo img { height: 60px; width: auto; }
.main-nav ul {
    display: flex;
    gap: 28px;
}
.main-nav a {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}
.main-nav a.active,
.main-nav a:hover { color: #13AFF0; }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }

/* Hero (home) - real YouTube background video */
.hero {
    position: relative;
    height: 626px;
    overflow: hidden;
    margin-top: -76px;
    background: #000;
}
.hero-video-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero-video-wrap iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    height: 100vh;
    min-width: 100%;
    min-height: 56.25vw;
    transform: translate(-50%, -50%);
    background-size: cover;
    background-position: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}
.hero-overlay > div { max-width: 800px; }
.hero-overlay h1 {
    color: #fff;
    font-size: 44px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero-overlay p {
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}
.hero-btn {
    display: inline-block;
    border: 1.6px solid #fff;
    border-radius: 8px;
    color: #fff;
    padding: 15px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    transition: background .2s, color .2s;
}
.hero-btn:hover { background: #fff; color: #2b2b2b; }

/* Brand logo strip */
.brand-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 30px 20px;
    background: #fff;
}
.brand-logo {
    height: 65px;
    width: auto;
    object-fit: contain;
}

/* Brand slider (products page) */
.brand-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0;
    background: #fff;
    overflow: hidden;
}
.brand-row img { height: 180px; width: auto; }

/* Inner-page banner (own background image + navy overlay, matches live site) */
.page-banner {
    position: relative;
    height: 400px;
    margin-top: -76px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #02122D;
    opacity: 0.57;
}
.page-banner h1 {
    position: relative;
    color: #fff;
    font-size: 59px;
    font-weight: 600;
    text-transform: uppercase;
}
.page-banner p {
    position: relative;
    color: #fff;
    font-size: 16px;
    margin-top: 14px;
}

/* Generic containers */
.container { max-width: 1200px; margin: 0 auto; padding: 50px 20px; }

/* Products / catalog cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 20px;
}
.card {
    display: block;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    text-align: center;
    transition: box-shadow .2s;
}
.card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.card .card-title {
    padding: 14px 10px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
}

/* Body parts brand grid */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.brand-grid .card img { aspect-ratio: 16/9; object-fit: contain; background: #f7f7f7; padding: 10px; }

.breadcrumb { margin-bottom: 10px; font-size: 13px; }
.breadcrumb a { color: #d4a72c; }

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
    margin-top: 20px;
}
.photo-grid a img { aspect-ratio: 1/1; object-fit: cover; border-radius: 4px; }

/* Our vision / contact */
.text-page p { max-width: 800px; font-size: 15px; }

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 10px;
}
.contact-grid h3 { text-transform: uppercase; margin-bottom: 10px; font-size: 16px; }
.contact-grid .facebook-link { color: #3b5998; font-weight: 700; }

/* Footer */
.site-footer {
    background: #1b1b1b;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
}
.site-footer ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 14px;
}
.site-footer a { color: #fff; text-transform: uppercase; font-size: 12px; }
.site-footer a:hover { color: #13AFF0; }
.copyright { font-size: 14px; color: #4A4A4A; }

/* Lightbox */
.lightbox-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.85);
    display: none; align-items: center; justify-content: center; z-index: 100;
}
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img { max-width: 90vw; max-height: 90vh; }
.lightbox-close {
    position: absolute; top: 20px; right: 30px;
    color: #fff; font-size: 30px; cursor: pointer; background: none; border: none;
}

@media (max-width: 768px) {
    .main-nav ul { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(0,0,0,0.9); padding: 10px 20px; }
    .main-nav ul.open { display: flex; }
    .nav-toggle { display: block; }
    .hero { height: 320px; }
}
