:root {
    --gold: #D4AF37;
    --gold-hover: #E2C465;
    --dark-green: #05150F;
    --text-white: #FFFFFF;
    --text-muted: #CCCCCC;
}

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

/* Screen reader only for SEO */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* STRICT 100VH NO SCROLL */
body, html {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-green);
    -webkit-font-smoothing: antialiased;
}

.equestrian-layout {
    position: relative;
    width: 100vw;
    height: 100vh;
}

/* Background Image Layer */
.image-layer {
    position: absolute;
    inset: 0;
    /* Focus slightly higher on the horse image so it shows nicely in the middle */
    background: url('bg.webp') center 30% / cover no-repeat;
    z-index: 1;
}

/* The Magic Gradient Overlay */
.gradient-layer {
    position: absolute;
    inset: 0;
    /* 
       0-25%: White (for dark logo to pop)
       25-60%: Translucent fade (horse is visible)
       60-100%: Dark Green (for white text to pop)
    */
    background: linear-gradient(
        to bottom, 
        rgba(255,255,255,1) 0%, 
        rgba(255,255,255,0.85) 25%, 
        rgba(10,35,25,0.6) 55%, 
        rgba(5,21,15,1) 100%
    );
    z-index: 2;
}

/* Content Container */
.content-layer {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    padding: 4vh 4vw;
}

/* --- Top Section --- */
.top-section {
    text-align: center;
    flex-shrink: 0;
    padding-top: 2vh;
}

.brand-logo {
    width: auto;
    max-height: clamp(100px, 25vh, 260px); /* Massive increase in size */
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.08));
}

.status-badge {
    font-size: clamp(0.7rem, 1.4vh, 0.85rem);
    font-weight: 600;
    letter-spacing: 5px;
    color: #FFFFFF;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    text-transform: uppercase;
    margin-top: 1.5vh;
}

/* --- Bottom Section --- */
.bottom-section {
    text-align: center;
    color: var(--text-white);
    flex-shrink: 0;
    padding-bottom: 2vh;
}

.main-title {
    display: none;
}

.description {
    font-size: clamp(0.9rem, 1.8vh, 1.15rem);
    color: var(--text-muted);
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto 3vh auto;
    line-height: 1.6;
}

.services {
    font-size: clamp(0.8rem, 1.6vh, 1rem);
    font-weight: 400;
    color: var(--text-white);
    margin-bottom: 4vh;
    line-height: 1.8;
}

.services .dot {
    color: var(--gold);
    margin: 0 10px;
    font-size: 0.8em;
}

.mobile-break {
    display: none;
}

/* Actions */
.action-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4vh;
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: clamp(1rem, 2vh, 1.2rem) clamp(2rem, 4vw, 3rem);
    font-size: clamp(0.75rem, 1.5vh, 0.85rem);
    font-weight: 500;
    letter-spacing: 2px;
    border-radius: 50px; /* Elegant pill shape */
    text-decoration: none;
    transition: all 0.4s ease;
    text-transform: uppercase;
}

.btn-gold {
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-gold:hover {
    background-color: var(--gold);
    color: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--text-white);
    background-color: var(--text-white);
    color: var(--dark-green);
    transform: translateY(-3px);
}

/* Footer */
.footer-info {
    font-size: clamp(0.7rem, 1.3vh, 0.85rem);
    color: var(--text-muted);
}

.footer-info a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-info a:hover {
    color: var(--gold);
}

.footer-info .sep {
    margin: 0 10px;
    color: rgba(255,255,255,0.2);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(15px);
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

@keyframes fadeIn {
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .content-layer {
        padding: 3vh 1.5rem;
    }
    
    .gradient-layer {
        /* On mobile, bring the dark part up slightly higher so text doesn't overlap bright areas */
        background: linear-gradient(
            to bottom, 
            rgba(255,255,255,1) 0%, 
            rgba(255,255,255,0.85) 15%, 
            rgba(10,35,25,0.7) 45%, 
            rgba(5,21,15,1) 100%
        );
    }

    .brand-logo {
        max-height: 35vh;
        width: 85vw;
        object-fit: contain;
    }
    
    .mobile-break {
        display: block;
    }
    
    .mobile-hide {
        display: none;
    }
    
    .action-group {
        flex-direction: column;
        gap: 0.8rem;
        max-width: 320px;
        margin: 0 auto 3vh auto;
    }
    
    .btn {
        width: 100%;
    }

    .footer-info {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .footer-info .sep {
        display: none;
    }
}
