@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300&family=Montserrat:wght@200;300;400;500&display=swap');

/* --- GLOBAL SCALING & RESET --- */
html {
    font-size: 125%; 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #e6e3dd; /* Warm sand/greige tone */
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

/* Minimal Text Header (Subpages) */
.subpage-header {
    text-align: center;
    padding: 60px 20px 30px 20px;
}

.subpage-header a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #111111;
    text-decoration: none;
    display: block;
}

.subpage-header span {
    font-size: 0.625rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #666666;
    display: block;
    margin-top: 5px;
}

/* 1. Main Hero Banner */
.hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #d8d4cb;
}

.hero-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2); /* Soft darkening layer */
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    width: 90%;
    pointer-events: none;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.625rem;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6875rem;
    letter-spacing: 6px;
    font-weight: 400;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

/* Sub-Header Metadata Line */
.sub-header-line {
    max-width: 1100px;
    margin: 25px auto 60px auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.625rem;
    letter-spacing: 2.5px;
    color: #555555;
    text-transform: uppercase;
}

.sub-header-line a {
    color: inherit;
    text-decoration: none;
}

/* Container Constraints */
.content-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

/* 2. Side-by-Side Portrait Detail Images Section */
.two-portrait-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 110px;
}

/* Subtítulo de Localização - Centralização Exata */
.middle-location-tag {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #333333;
    margin-top: 40px;    /* Empurra o texto para baixo, afastando das fotos */
    margin-bottom: 50px; /* Equilibra a distância em relação ao nome abaixo */
}

.portrait-frame {
    aspect-ratio: 28 / 38;
    width: 280px;
    height: 380px;
    background-color: #d8d4cb;
    overflow: hidden;
}

.portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 3. Primary Statement Text Block (Above Landscape) */
.statement-section {
    max-width: 580px;
    margin: 100px auto 100px auto;
    padding: 0 20px;
    text-align: center;
}

.statement-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.statement-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.925rem;
    font-weight: 300;
    line-height: 1.9;
    color: #2b2b2b;
    letter-spacing: 0.3px;
}

/* 4. Landscape Section */
.landscape-section {
    width: 100%;
    margin-bottom: 80px;
}

.landscape-frame {
    position: relative;
    width: 100%;
    height: 85vh;
    max-height: 550px;
    min-height: 380px;
    background-color: #d8d4cb;
    overflow: hidden;
    margin-bottom: 10px;
}

.landscape-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.landscape-title {
    position: absolute;
    top: 16%;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    font-weight: 300;
    letter-spacing: 12px;
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
    width: 90%;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.landscape-title .asterisk {
    font-size: 0.75em;
    vertical-align: top;
    margin-left: 2px;
}

.landscape-caption {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.725rem;
    font-weight: 300;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
    width: 85%;
    max-width: 650px;
    line-height: 1.5;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

/* 5. Content Text Section (Below Landscape) */
.content-text-section {
    max-width: 580px;
    margin: 90px auto 100px auto;
    padding: 0 20px;
    text-align: center;
}

.content-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.925rem;
    font-weight: 300;
    line-height: 1.9;
    letter-spacing: 0.3px;
    color: #2b2b2b;
    margin-bottom: 20px;
}

.secondary-text-section {
    max-width: 750px;
    margin: 0 auto 100px auto;
    text-align: center;
    font-size: 0.75rem;
    line-height: 1.85;
    color: #444444;
    letter-spacing: 0.5px;
}

.secondary-text-section p {
    margin-bottom: 18px;
}

/* 6. Profile / Agent Section */
.agent-section {
    text-align: center;
    margin-bottom: 100px;
}

.agent-photo-frame {
    aspect-ratio: 32 / 40;
    width: 320px;
    height: 400px;
    margin: 0 auto 36px auto;
    background-color: #d8d4cb;
    overflow: hidden;
}

.agent-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.agent-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 400;
    color: #111111;
    margin-bottom: 8px;
}

.agent-subtitle {
    font-size: 0.65rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #666666;
    margin-bottom: 18px;
}

.agent-contact {
    font-size: 0.6875rem;
    letter-spacing: 1.5px;
    color: #333333;
    line-height: 2;
}

.agent-contact p {
    margin-bottom: 6px;
}

.agent-contact a {
    color: #111111;
    text-decoration: none;
    border-bottom: 1px solid #111111;
    padding-bottom: 1px;
}

.agent-tagline {
    margin-top: 40px;
    font-size: 0.625rem;
    letter-spacing: 2.5px;
    color: #666666;
    text-transform: uppercase;
}

/* Legal Subpages Layout */
.legal-page-section {
    max-width: 750px;
    margin: 20px auto 100px auto;
    font-size: 0.75rem;
    line-height: 1.9;
    color: #333333;
}

.legal-page-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 400;
}

.legal-page-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.125rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 30px 0 10px 0;
    color: #111111;
    font-weight: 400;
}

.legal-page-section p {
    margin-bottom: 15px;
}

.legal-page-section a {
    color: #111111;
    text-decoration: underline;
}

/* 7. Bottom Dark Green Footer Bar */
.footer-bar {
    background-color: #1b332b;
    color: #e6e3dd;
    padding: 35px 20px;
    text-align: center;
    font-size: 0.625rem;
    letter-spacing: 2.5px;
    line-height: 1.8;
    text-transform: uppercase;
}

.footer-bar a {
    color: #e6e3dd;
    text-decoration: none;
}

.footer-bottom-links {
    margin-top: 15px;
    font-size: 0.5625rem;
    color: #a3b3ac;
}

.footer-bottom-links a {
    color: #a3b3ac;
    margin: 0 8px;
}

/* --- MOBILE RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
    .content-container {
        padding: 0 20px;
    }

    .hero-title { 
        font-size: 1.875rem; 
        letter-spacing: 5px; 
    }

    .sub-header-line { 
        flex-direction: column; 
        gap: 8px; 
        text-align: center; 
        margin-bottom: 40px;
    }

    .two-portrait-grid { 
        flex-direction: column; 
        align-items: center; 
        gap: 30px;
        margin-bottom: 60px;
    }

    .portrait-frame { 
        width: 100%; 
        max-width: 320px; 
        height: 360px;
    }
    
    .statement-section,
    .content-text-section {
        margin: 60px auto;
    }

    .statement-title {
        font-size: 1.4rem;
        letter-spacing: 3px;
    }
    
    .statement-text,
    .content-text {
        font-size: 0.875rem;
        line-height: 1.7;
    }

    .landscape-title {
        font-size: 2.2rem;
        letter-spacing: 6px;
        top: 18%;
    }
    
    .landscape-caption {
        font-size: 0.625rem;
        bottom: 16px;
        width: 90%;
    }

    .agent-photo-frame {
        width: 280px;
        height: 350px;
    }
}