/* ------------------------------------- */
/* NAVBAR & HEADER                       */
/* ------------------------------------- */
.navbar-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: center;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    padding-bottom: 16px;
}

.navbar { 
    margin-top: 32px; 
    background: #ffffff; 
    border: 1px solid #eaeaea; 
    border-radius: 50px; 
    padding: 12px 28px; 
    display: flex; 
    align-items: center; 
    gap: 48px; 
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03); 
    z-index: 10; 
}

.header-container .navbar {
    margin-top: 24px;
}

.nav-logo { 
    font-weight: 700; 
    font-size: 16px; 
    color: #111; 
    cursor: pointer; 
    letter-spacing: -0.5px; 
    text-decoration: none; 
}

.nav-links { 
    list-style: none; 
    display: flex; 
    gap: 28px; 
}

.nav-links li a { 
    text-decoration: none; 
    color: #999; 
    font-size: 13px; 
    font-weight: 500; 
    transition: color 0.2s ease; 
}

.nav-links li a:hover, 
.nav-links li a.active { 
    color: #111; 
}

.nav-links li a.active { 
    font-weight: 600; 
}

/* ------------------------------------- */
/* CINEMATIC REVEAL FOOTER               */
/* ------------------------------------- */
.site-footer {
    background-color: #000000;
    color: #ffffff;
    position: relative;
}

.footer-visual-spacer {
    width: 100%;
    height: 50vh; 
    background-image: url('https://res.cloudinary.com/djxcfeqsb/image/upload/v1784971059/Mountain_valley_with_dirt_path_202607251445_hm3xot.jpg');
    background-size: cover;
    background-position: center center;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px 60px 40px;
    position: relative;
    z-index: 2;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 80px;
}

.footer-huge-text {
    font-size: clamp(48px, 6vw, 96px);
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1.05;
    color: #ffffff;
}

.footer-huge-text .text-italic {
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

.footer-giant-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    color: #000000;
    padding: 24px 48px;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
}

.footer-giant-btn:hover {
    transform: translateY(-4px);
    background: #f0f0f0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.brand-col .footer-logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    color: #ffffff;
}

.brand-col p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.6;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-col a, .footer-col .address-text {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 32px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 32px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ffffff;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .brand-col { grid-column: 1 / 3; }
}

@media (max-width: 768px) {
    .navbar { flex-direction: column; gap: 16px; padding: 16px 24px; border-radius: 20px; margin-top: 16px; }
    .nav-links { gap: 16px; flex-wrap: wrap; justify-content: center; }
    
    .footer-visual-spacer { height: 40vh; }
    .footer-top { flex-direction: column; align-items: flex-start; gap: 40px; padding-bottom: 40px; margin-bottom: 40px; }
    .footer-giant-btn { width: 100%; justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
    .brand-col { grid-column: auto; }
    .footer-bottom { flex-direction: column; gap: 24px; text-align: center; }
    .footer-content { padding: 0 24px 40px 24px; }
}
