@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --racing-green: #15332E;
    --deep-green: #0a1b18;
    --antique-cream: #FDFCF8;
    --luxury-gold: #D4AF37;
    --text-dark: #1A2E2A;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
}

body {
    background-color: var(--antique-cream);
    color: var(--text-dark);
    font-family: var(--font-sans);
    margin: 0;
    padding: 0;
    line-height: 1.8;
    overflow-x: hidden;
}

/* NAVIGATION */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(253, 252, 248, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(21, 51, 46, 0.1);
    box-sizing: border-box;
}

.brand { display: flex; align-items: center; gap: 15px; text-decoration: none; }
.logo-img { height: 45px; width: auto; } /* Expecting handshake.png */

.brand-text h1 {
    font-family: var(--font-serif); font-size: 1.4rem; color: var(--racing-green);
    margin: 0; text-transform: uppercase; letter-spacing: 1px; font-weight: 700;
}
.brand-text span {
    display: block; font-size: 0.55rem; color: var(--luxury-gold);
    letter-spacing: 3px; text-transform: uppercase; font-weight: 600;
}

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-link {
    text-decoration: none; color: var(--racing-green); font-size: 0.7rem;
    text-transform: uppercase; letter-spacing: 2px; font-weight: 600; transition: 0.3s;
}
.cta-button {
    background-color: var(--racing-green); color: var(--antique-cream);
    padding: 10px 25px; font-family: var(--font-sans); font-size: 0.7rem;
    text-transform: uppercase; letter-spacing: 2px; text-decoration: none;
    border: 1px solid var(--racing-green); transition: all 0.3s ease;
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 90vh; /* Changed from fixed height for mobile */
    display: flex;
    align-items: center;
    padding: 120px 6% 80px 6%; /* Added top padding for fixed nav */
    background-color: var(--deep-green);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: var(--antique-cream);
}

.hero h2 {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1.1;
    margin: 0 0 30px 0;
    font-weight: 400;
}

.hero p {
    font-size: 1.1rem; font-weight: 300; opacity: 0.9; margin-bottom: 50px;
    border-left: 2px solid var(--luxury-gold); padding-left: 20px;
}

/* HERO IMAGE (Desktop) */
.hero-image-container {
    position: absolute; top: 0; right: 0; width: 50%; height: 100%;
    background: url('unnamed.jpg') center/cover no-repeat;
    z-index: 1;
}
.hero-image-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, var(--deep-green) 15%, rgba(10, 27, 24, 0.2) 100%);
}

/* VIDEO SHOWCASE */
.video-showcase {
    background: #000;
    padding: 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.video-showcase video {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.8;
}
.video-caption {
    padding: 40px 6%;
    text-align: center;
    background: var(--racing-green);
    color: var(--luxury-gold);
    font-family: var(--font-serif);
    font-size: 1.5rem;
}

/* GRID SECTIONS */
.section-pad { padding: 100px 6%; }
.section-header { font-family: var(--font-serif); font-size: 3rem; color: var(--racing-green); margin-bottom: 60px; text-align: center; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.product-card {
    background: #fff; border: 1px solid rgba(0,0,0,0.05);
    padding: 40px; transition: 0.3s;
}
.product-card img { width: 100%; height: auto; margin-bottom: 20px; border: 1px solid #eee; }
.product-card h3 { font-family: var(--font-serif); font-size: 2rem; color: var(--racing-green); margin-bottom: 10px; }

/* FOOTER */
footer { background: var(--racing-green); color: rgba(255,255,255,0.4); padding: 80px 6%; text-align: center; font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; }

/* --- MOBILE OPTIMIZATION --- */
@media (max-width: 900px) {
    nav { padding: 15px 5%; }
    .brand-text h1 { font-size: 1.1rem; }
    .nav-links { display: none; } /* Hide regular links on mobile, keep CTA if possible or simplify */
    
    .hero { flex-direction: column; padding-top: 140px; text-align: center; }
    .hero-image-container { position: relative; width: 100%; height: 300px; margin-top: 40px; order: -1; display: none; } /* Hide complex bg on mobile, keep simple */
    .hero-content { width: 100%; }
    .hero h2 { font-size: 2.8rem; }
    
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .section-pad { padding: 60px 5%; }
}
