/* Premium Architectural Styling - Light Theme with Navy & Gold */

:root {
    /* Refined Color Palette */
    --color-bg: #FAFAFA; /* Off-white for body to reduce eye-strain */
    --color-surface: #FFFFFF; /* Pure white for cards/sections */
    --color-text: #333333; /* Softer black for body text */
    --color-text-dark: #0A192F; /* Deep Navy Blue for Headings */
    --color-accent: #B28B49; /* Elegant Gold */
    --color-accent-dark: #8F7038;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    font-weight: 500;
    line-height: 1.1;
}

a { color: inherit; text-decoration: none; transition: all 0.3s ease; }

/* Buttons - Signature Rectangular Style */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 2px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: none;
}

.btn-gold {
    background-color: var(--color-accent);
    color: #FFFFFF;
}
.btn-gold:hover {
    background-color: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(178, 139, 73, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.btn-outline:hover {
    background-color: #FFFFFF;
    color: var(--color-text-dark);
}

.btn-pill {
    border-radius: 4px;
    padding: 0.75rem 2rem;
    font-size: 0.85rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.btn-full { width: 100%; }

.link-arrow {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.link-arrow:hover { letter-spacing: 2.5px; }

/* Scroll Animations - Disabled per user request for normal static view */
.animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: none;
}

/* Glassmorphism Header */
.header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

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

.logo {
    display: flex; align-items: center;
}
.logo img {
    height: 55px; /* Perfect height for the header */
    width: auto;
    object-fit: contain;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text-dark);
    position: relative;
    transition: background-color 0.3s;
}
.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-text-dark);
    transition: transform 0.3s ease, top 0.3s ease;
    left: 0;
}
.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.mobile-menu-toggle.active .hamburger { background-color: transparent; }
.mobile-menu-toggle.active .hamburger::before { top: 0; transform: rotate(45deg); }
.mobile-menu-toggle.active .hamburger::after { top: 0; transform: rotate(-45deg); }

.nav-wrapper { display: flex; align-items: center; gap: 2rem; }

.nav-links { display: flex; gap: 2.5rem; }
.nav-links a {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.nav-links a.active, .nav-links a:hover { color: var(--color-accent); }

.header-contact { display: flex; align-items: center; gap: 2rem; }
.phone-link {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-text-dark);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.phone-link:hover { color: var(--color-accent); }

/* Hero Section Styles */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--color-bg-light);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('../images/hero_daytime_luxury.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

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

/* Modern Landbook-style Pill Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #FFF;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 6vw, 6.5rem);
    line-height: 1.05;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0px 2px 6px rgba(0,0,0,0.9), 0px 10px 25px rgba(0,0,0,0.6);
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2vw, 1.8rem);
    color: #FFFFFF;
    margin-bottom: 2.5rem;
    max-width: 700px;
    font-weight: 500;
    text-shadow: 0px 2px 6px rgba(0,0,0,0.9), 0px 6px 15px rgba(0,0,0,0.6);
}

.hero-cta-wrapper { display: flex; gap: 1.5rem; }

.scroll-indicator {
    position: absolute; bottom: 2rem; left: 5%; z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
    color: #FFFFFF;
}
.scroll-indicator span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 3px; writing-mode: vertical-rl; transform: rotate(180deg); }
.scroll-indicator .line { width: 1px; height: 60px; background-color: rgba(255, 255, 255, 0.2); position: relative; overflow: hidden; }
.scroll-indicator .line::before {
    content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background-color: var(--color-accent);
    animation: scrollLine 2.5s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}
@keyframes scrollLine { 0% { top: -100%; } 50% { top: 0%; } 100% { top: 100%; } }

/* Layout Utilities */
.section { padding: 9rem 5%; position: relative; z-index: 2; }
.container { max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }
.margin-bottom-xl { margin-bottom: 5rem; }
.margin-bottom-lg { margin-bottom: 4rem; }

.section-title { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1rem; }
.section-desc { font-size: 1.1rem; color: #666; max-width: 600px; margin: 0 auto; }
.title-divider { width: 50px; height: 2px; background-color: var(--color-accent); margin-bottom: 2rem; }
.title-divider.center { margin: 0 auto 2rem auto; }

/* Page Header for Internal Pages (Provides dark background for translucent header) */
.page-header {
    position: relative;
    padding: 12rem 5% 6rem;
    background-color: var(--color-text-dark);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: #FFFFFF;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 25, 47, 0.75);
    z-index: 1;
}
.page-header > * {
    position: relative;
    z-index: 2;
}
.page-header h1 {
    color: #FFFFFF;
    font-size: clamp(3rem, 6vw, 4.5rem);
    margin-bottom: 1rem;
}
.page-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Editorial Services Grid */
.services { background-color: var(--color-surface); }
.services-editorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}
.service-editorial-card {
    display: block;
    text-decoration: none;
    color: var(--color-text-dark);
    transition: transform 0.4s ease;
}

.service-editorial-card:hover {
    transform: translateY(-10px);
}

.service-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    margin-bottom: 1.5rem;
    border-radius: 16px; /* Land-book modern rounded corners */
    box-shadow: 0 15px 30px rgba(0,0,0,0.08); /* Soft floating shadow */
}
.service-img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.service-editorial-card:hover .service-img {
    transform: scale(1.05); /* Slight zoom on hover */
}
.service-content {
    display: flex; gap: 1.5rem;
    padding: 2.5rem;
}
.service-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-accent);
    opacity: 0.8;
    line-height: 0.8;
}
.service-details h3 { font-size: 1.5rem; margin-bottom: 0.75rem; color: var(--color-text-dark); transition: color 0.3s; }
.service-editorial-card:hover h3 { color: var(--color-accent); }
.service-details p { color: #555; font-size: 0.95rem; }

/* Dynamic Banner Section */
.banner-section {
    position: relative;
    padding: 8rem 5%;
    color: #FFFFFF;
}
.banner-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://images.unsplash.com/photo-1628192100806-3829033486ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-attachment: fixed; background-size: cover; background-position: center; z-index: 0;
}
.banner-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(10, 25, 47, 0.85); z-index: 1;
}
.banner-content { position: relative; z-index: 2; }
.banner-headline { color: #FFFFFF; font-size: clamp(2.5rem, 4vw, 3.5rem); margin-bottom: 4rem; }
.trust-grid-elegant { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 3rem; }
.trust-col h4 { color: var(--color-accent); font-family: var(--font-body); font-size: 1.5rem; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 2px; }
.trust-col p { color: rgba(255,255,255,0.7); font-size: 1rem; }

/* Testimonials (Clean) */
.testimonials { background-color: var(--color-bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.testimonial-card {
    padding: 3rem;
    background: var(--color-surface);
    border-left: 2px solid var(--color-accent);
}
.stars { color: var(--color-accent); font-size: 1rem; letter-spacing: 3px; margin-bottom: 1.5rem; }
.quote { font-family: var(--font-heading); font-size: 1.35rem; font-style: italic; color: var(--color-text-dark); margin-bottom: 2rem; line-height: 1.6; }
.author { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; color: #888; }

/* High-End Contact Section */
.contact-premium { background-color: var(--color-surface); }
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.contact-desc { font-size: 1.1rem; color: #666; margin-bottom: 3rem; }
.contact-details-elegant { display: flex; flex-direction: column; gap: 2rem; }
.detail-row span { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: #999; margin-bottom: 0.2rem; }
.detail-row a, .detail-row p { font-family: var(--font-heading); font-size: 1.8rem; color: var(--color-text-dark); }

.contact-form-elegant form { display: flex; flex-direction: column; gap: 2rem; }
.input-line input, .input-line select, .input-line textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    padding: 1rem 0;
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-text-dark);
    transition: border-color 0.3s;
}
.input-line input:focus, .input-line select:focus, .input-line textarea:focus { outline: none; border-bottom-color: var(--color-accent); }

/* Footer */
.footer { background-color: var(--color-text-dark); padding: 6rem 5% 3rem; color: #FFFFFF; }
.footer-content { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 4rem; }
.footer-logo { font-family: var(--font-heading); font-size: 2rem; color: #FFFFFF; letter-spacing: 2px; margin-bottom: 0.5rem; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; letter-spacing: 1px; }
.footer-links { display: flex; gap: 3rem; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; font-weight: 600; }
.footer-links a:hover { color: var(--color-accent); }
.footer-copy { width: 100%; text-align: center; margin-top: 5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.8rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px;}

/* Responsive */
@media (max-width: 1024px) {
    .header { flex-wrap: nowrap; padding: 1.5rem 5%; background: transparent; border-bottom: none; box-shadow: none; }
    .header.scrolled { background: rgba(255, 255, 255, 0.98); box-shadow: 0 4px 20px rgba(0,0,0,0.05); border-bottom: 1px solid rgba(0, 0, 0, 0.05); padding: 1rem 5%; }
    .logo { order: 1; flex-shrink: 0; }
    .logo img { height: 45px; }

    .header-contact { 
        display: flex; 
        flex-direction: column; 
        width: 100%; 
        align-items: flex-start; 
        gap: 3rem; 
        margin: 2rem 0 0 0; 
    }
    .header-contact .phone-link { 
        color: #FFFFFF; 
        font-size: 1.1rem; 
        letter-spacing: 1px;
    }
    .header-contact .btn-pill { 
        width: 100%; 
        padding: 1.2rem; 
        font-size: 1rem; 
        text-align: center;
    }

    .mobile-menu-toggle { display: block; order: 3; margin-left: auto; }
    
    .mobile-menu-toggle.active .hamburger::before, 
    .mobile-menu-toggle.active .hamburger::after {
        background-color: #FFFFFF;
    }

    .nav-wrapper {
        position: fixed;
        top: 0; right: -100%;
        width: 85%; max-width: 400px;
        height: 100vh;
        background: var(--color-text-dark);
        flex-direction: column;
        justify-content: flex-start;
        padding: 6rem 2.5rem;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        z-index: 1000;
        gap: 2rem;
        overflow-y: auto;
    }
    .nav-wrapper.active { right: 0; }
    
    .nav-links { flex-direction: column; width: 100%; text-align: left; gap: 0; }
    .nav-links a {
        color: #FFFFFF;
        font-size: 1.25rem;
        letter-spacing: 2px;
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        display: block;
        width: 100%;
    }
    .nav-links a:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
    
    .hero-title { font-size: 4rem; }
    .contact-split, .trust-grid-elegant, .testimonials-grid { grid-template-columns: 1fr; gap: 4rem; }
    .banner-headline { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .header { padding: 1rem 3%; }
    .logo img { height: 35px; }

    .hero-content { text-align: center; }
    .hero-cta-wrapper { flex-direction: column; align-items: center; }
    .section { padding: 6rem 5%; }
    .footer-content { flex-direction: column; text-align: center; }
}
