:root {
    /* Extracted Logo Palette */
    --gold-primary: #d49448;
    --gold-dark: #aa743c;
    --brown-dark: #4d3a26;
    
    /* Layout Colors */
    --bg-white: #ffffff;
    --bg-cream: #faf9f7;
    --text-main: #1a1510;
    --text-muted: #6b5a4a;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-white);
}

body {
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Header & Logo */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: var(--bg-white);
    position: relative;
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo-container .big-logo {
    width: 160px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-container .big-logo:hover {
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a:not(.btn-gold) {
    color: var(--brown-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a:not(.btn-gold)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--gold-primary);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-gold):hover::after {
    width: 100%;
}

/* Buttons */
.btn-gold {
    background-color: var(--gold-primary);
    color: var(--bg-white);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--gold-dark);
    transform: translateY(-2px);
}

.btn-gold-large {
    background-color: var(--gold-primary);
    color: var(--bg-white);
    padding: 1rem 3rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-gold-large:hover {
    background-color: var(--gold-dark);
    transform: translateY(-2px);
}

.link-outline {
    color: var(--brown-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--gold-primary);
    padding-bottom: 2px;
}

/* Immersive Hero Section */
.hero-immersive {
    position: relative;
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
}

.hero-overlay-gradient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, var(--bg-white) 0%, rgba(255,255,255,0.85) 45%, transparent 100%),
                linear-gradient(0deg, var(--bg-white) 0%, transparent 15%);
}

.hero-content-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.hero-text-box {
    max-width: 650px;
    margin-bottom: 2rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(212, 148, 72, 0.15);
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-text-box h1 {
    font-size: clamp(4rem, 6vw, 7.5rem);
    line-height: 1.0;
    color: var(--brown-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-text-box p {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.rating {
    display: flex;
    flex-direction: column;
}

.rating .stars {
    color: var(--gold-primary);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.rating .reviews {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.floating-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 6rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 40px rgba(77, 58, 38, 0.08);
}

.feature-card h4 {
    color: var(--brown-dark);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.feature-card p {
    color: var(--gold-dark);
    font-size: 0.9rem;
    font-weight: 600;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 5%;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--brown-dark);
    font-weight: 600;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--brown-dark);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--gold-primary);
    border-radius: 2px;
    animation: scrollWheel 2s infinite ease-in-out;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0; }
    100% { transform: translateY(0); opacity: 0; }
}

/* Masonry Services Section */
.services-section {
    padding: 8rem 5%;
    background-color: var(--bg-white);
}

.section-title {
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--brown-dark);
}

.gold-line {
    width: 80px;
    height: 4px;
    background-color: var(--gold-primary);
    margin: 1rem 0;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 2rem;
}

.masonry-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.masonry-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(77, 58, 38, 0.9) 0%, rgba(77, 58, 38, 0.2) 50%, transparent 100%);
    z-index: 1;
    transition: background 0.3s ease;
}

.masonry-item:hover img {
    transform: scale(1.05);
}

.masonry-item:hover::before {
    background: linear-gradient(to top, rgba(212, 148, 72, 0.9) 0%, rgba(77, 58, 38, 0.4) 100%);
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 2;
    color: var(--bg-white);
}

.item-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.item-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Grid Spanning */
.item-large { grid-column: span 2; grid-row: span 2; }
.item-medium { grid-column: span 2; grid-row: span 1; }
.item-wide { grid-column: span 4; grid-row: span 1; }

/* Bottom CTA */
.bottom-cta {
    background-color: var(--bg-cream);
    padding: 8rem 5%;
    text-align: center;
    border-top: 1px solid rgba(212, 148, 72, 0.2);
}

.bottom-cta h2 {
    font-size: 3rem;
    color: var(--brown-dark);
    margin-bottom: 2rem;
}

/* Footer */
.site-footer {
    background-color: var(--brown-dark);
    color: var(--bg-white);
    padding: 6rem 5% 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 2fr;
    gap: 3rem;
    border-bottom: 1px solid rgba(212, 148, 72, 0.2);
    padding-bottom: 4rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 60px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
}

.footer-services h4, .footer-contact h4, .footer-map h4 {
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-services ul {
    list-style: none;
}

.footer-services ul li {
    margin-bottom: 0.8rem;
}

.footer-services ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-services ul li a:hover {
    color: var(--gold-primary);
}

.footer-contact p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.8rem;
}

.footer-contact strong {
    color: var(--bg-white);
}

.map-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(212, 148, 72, 0.2);
    background: #e5e3df; /* Placeholder bg in case map doesn't load immediately */
}

.footer-bottom {
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible, .fade-in-left.visible, .fade-in-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Mobile Responsiveness */
.mobile-menu-btn { display: none; }

@media (max-width: 992px) {
    .split-hero {
        flex-direction: column;
        background: var(--bg-cream);
        padding-top: 4rem;
    }
    
    .hero-left {
        padding-right: 0;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .hero-left p {
        margin: 0 auto 3rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .image-mask {
        border-radius: 20px;
    }
    
    .masonry-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }
    
    .item-large, .item-medium, .item-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        width: 30px;
        height: 20px;
        position: relative;
    }
    
    .mobile-menu-btn span {
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: var(--brown-dark);
        left: 0;
    }
    
    .mobile-menu-btn span:nth-child(1) { top: 0; }
    .mobile-menu-btn span:nth-child(2) { top: 9px; }
    .mobile-menu-btn span:nth-child(3) { top: 18px; }
}
