:root {
    --primary: #000000;
    --secondary: #FFFFFF;
    --accent: #B8860B; /* Goldenrod */
    --accent-dark: #8B6508; /* Darker version for better contrast on white (AA compliant) */
    --accent-soft: #fcf8e8;
    --text-main: #1A1A1A;
    --text-muted: #666666; 
    --bg-light: #FDFDFD;
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    --container-width: 1200px;
}

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

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--secondary);
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #888; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.section-padding {
    padding: 120px 0;
}

.text-center {
    text-align: center;
}

.bg-dark {
    background-color: #0A0A0A;
}

.bg-black {
    background-color: #000000;
    color: white;
}

/* Typography */
h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 25px;
    letter-spacing: -3px;
    color: white;
}

h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.eyebrow {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
    color: var(--accent-dark); /* Using darker accent for accessibility */
}

.white .eyebrow {
    color: var(--accent); /* Original accent is fine on dark background */
}

.white h2 {
    color: white;
}

.white p {
    color: #999;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: #000 !important;
    padding: 22px 50px;
    font-weight: 700;
    border-radius: 4px;
    border: 1px solid var(--accent);
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px rgba(184, 134, 11, 0.2);
}

.btn-primary:hover {
    background: #000;
    border-color: #000;
    color: #FFF !important;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.btn-primary-sm {
    display: inline-block;
    background: #000;
    color: #FFF !important;
    padding: 12px 30px;
    font-weight: 600;
    border: 1px solid #000;
    border-radius: 4px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-primary-sm:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #000 !important; /* Dark text on gold hover */
}

header.scrolled .btn-primary-sm {
    background: #000;
    color: #FFF !important;
    border-color: #000;
}

header.scrolled .btn-primary-sm:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #000 !important;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    transition: var(--transition);
}

header.scrolled {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 50px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white; /* White by default for dark backgrounds */
}

header.scrolled .nav-links a {
    color: #000; /* Black when scrolled on white bg */
}

.nav-links a:hover {
    color: var(--accent);
}

/* Logo Custom */
.custom-logo {
    display: flex;
    align-items: stretch;
    height: 60px;
    border: 1px solid #000;
}

.logo-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 15px;
    font-family: 'Outfit', sans-serif;
}

.logo-box.black {
    background: #000;
    color: #FFF;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 5px;
}

.logo-box.white {
    background: #FFF;
    color: #000;
    line-height: 1.1;
}

.logo-box.white .main {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.logo-box.white .sub {
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-top: 2px;
}

header.scrolled .custom-logo {
    height: 50px;
}

/* Hero */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-color: #000;
    color: white;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transform: scale(1.1); /* Subtle zoom effect */
    animation: heroZoom 20s infinite alternate linear;
}

@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Darker for better text visibility */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-content h1 {
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.35rem;
    margin-bottom: 45px;
    opacity: 1;
    font-weight: 400;
    max-width: 650px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}
/* Services */
.section-header {
    margin-bottom: 80px;
    max-width: 700px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    padding: 50px;
    background: #FFF;
    border: 1px solid #F0F0F0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent);
    transition: var(--transition);
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    box-shadow: 0 30px 60px rgba(0,0,0,0.06);
    transform: translateY(-15px);
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 30px;
    color: var(--accent);
}

.service-card h3 {
    margin-bottom: 20px;
    font-size: 1.6rem;
    letter-spacing: -0.5px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.portfolio-item {
    overflow: hidden;
    position: relative;
    height: 600px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

/* Rollovers removed per user request */

/* Split Section */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.image-box {
    position: relative;
    height: 100%;
    min-height: 450px;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.bw-filter {
    filter: grayscale(100%);
}

.image-box::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent);
    z-index: -1;
    border-radius: 4px;
}

.check-list {
    margin-top: 40px;
}

.check-list li {
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
    font-weight: 500;
    font-size: 1.1rem;
}

.check-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.8rem;
    top: 2px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5), inset 0 0 10px rgba(0,0,0,0.1);
    z-index: 1001;
    transition: var(--transition);
    border: 2px solid rgba(255,255,255,0.1);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.7);
}

.whatsapp-icon {
    width: 38px;
    height: 38px;
    fill: currentColor;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Footer */
footer {
    padding: 100px 0 50px;
    background: #000;
    color: white;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-brand .footer-tagline {
    margin-top: 25px;
    color: #AAA; /* Improved contrast on black */
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-scale {
    transform: scale(0.9);
    transform-origin: left center;
}

.info-label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 15px;
}

.footer-info .info-item, .footer-seo {
    margin-bottom: 30px;
}

.footer-info p, .footer-seo p {
    color: #EEE; /* Improved contrast on black */
    font-size: 1rem;
    line-height: 1.6;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999; /* Improved contrast */
    font-size: 0.85rem;
}

.bottom-flex a {
    color: #BBB;
    text-decoration: none;
    transition: var(--transition);
}

.bottom-flex a:hover {
    color: var(--accent);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-scale {
        transform-origin: center;
        margin: 0 auto;
        justify-content: center;
    }
    
    .footer-brand .footer-tagline {
        max-width: 100%;
    }
    
    .bottom-flex {
        flex-direction: column;
        gap: 15px;
    }
}

/* Responsive */
@media (max-width: 968px) {
    h1 { font-size: 3.2rem; }
    h2 { font-size: 2.2rem; }
    .split-grid { grid-template-columns: 1fr; gap: 60px; }
    .nav-links { display: none; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .section-padding { padding: 80px 0; }
}
