/* ==========================================================
   VITÁPOLIS
   Global Styles
   ========================================================== */


/* ----------------------------------------------------------
   RESET
   ---------------------------------------------------------- */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #24231f;
    background: #f3f0e9;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

.container {
    width: min(1280px, calc(100% - 80px));
    margin: 0 auto;
}


/* ----------------------------------------------------------
   TYPOGRAPHY
   ---------------------------------------------------------- */

h1,
h2,
h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

h1 {
    margin-bottom: 28px;
    font-size: clamp(3.5rem, 7vw, 7rem);
    line-height: .92;
    letter-spacing: -0.055em;
}

h2 {
    margin-bottom: 28px;
    font-size: clamp(2.6rem, 5vw, 5rem);
    line-height: 1;
    letter-spacing: -0.045em;
}

h3 {
    font-size: 2rem;
    line-height: 1.1;
}

.eyebrow {
    display: block;
    margin-bottom: 24px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.lead {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.4;
}


/* ----------------------------------------------------------
   HEADER
   ---------------------------------------------------------- */

.site-header {
    position: absolute;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    color: #fff;
}

.header-container {
    display: flex;
    align-items: center;
    width: calc(100% - 80px);
    max-width: 1440px;
    height: 100px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255, 255, 255, .25);
}

.site-logo {
    display: flex;
    align-items: center;
    width: 250px;
    min-height: 60px;
}

.site-logo img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 70px;
    object-fit: contain;
    object-position: left center;
}

.main-navigation {
    margin-left: auto;
}

.main-navigation ul {
    display: flex;
    align-items: center;
    gap: 31px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-navigation a {
    position: relative;
    padding: 40px 0 35px;
    font-size: .73rem;
    font-weight: 600;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.main-navigation a::after {
    position: absolute;
    bottom: 27px;
    left: 0;
    width: 0;
    height: 1px;
    background: #c8a86b;
    content: "";
    transition: width .3s ease;
}

.main-navigation a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: 38px;
}

.investor-access {
    padding: 13px 18px;
    border: 1px solid rgba(255,255,255,.65);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: .3s ease;
}

.investor-access:hover {
    border-color: #c8a86b;
    background: #c8a86b;
    color: #181816;
}


/* ----------------------------------------------------------
   LANGUAGE SELECTOR
   ---------------------------------------------------------- */

.language-selector {
    position: relative;
}

.language-current {
    padding: 10px 0;
    border: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
    font-size: .72rem;
    letter-spacing: .12em;
}

.language-current span {
    margin-left: 5px;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    display: none;
    min-width: 80px;
    padding: 8px 0;
    color: #222;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.language-selector:hover .language-dropdown {
    display: block;
}

.language-dropdown a {
    display: block;
    padding: 8px 18px;
    font-size: .7rem;
    letter-spacing: .1em;
}

.language-dropdown a:hover {
    background: #eeeae1;
}


/* ----------------------------------------------------------
   MOBILE MENU
   ---------------------------------------------------------- */

.mobile-menu-toggle {
    display: none;
    width: 35px;
    padding: 8px 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    margin: 7px 0;
    background: currentColor;
}

.mobile-navigation {
    display: none;
}


/* ----------------------------------------------------------
   HERO
   ---------------------------------------------------------- */

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    color: #fff;
    background: #171714;
}

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(10, 10, 8, .82) 0%,
            rgba(10, 10, 8, .52) 42%,
            rgba(10, 10, 8, .18) 75%,
            rgba(10, 10, 8, .25) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    padding-top: 120px;
}

.hero-content h1 {
    max-width: 1050px;
}

.hero-subtitle {
    max-width: 620px;
    margin-bottom: 42px;
    color: rgba(255,255,255,.83);
    font-size: 1.15rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.scroll-indicator {
    position: absolute;
    z-index: 3;
    right: 40px;
    bottom: 40px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: .65rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    transform: rotate(90deg);
    transform-origin: right center;
}

.scroll-line {
    display: block;
    width: 55px;
    height: 1px;
    background: rgba(255,255,255,.7);
}


/* ----------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 27px;
    border: 1px solid transparent;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
    transition: all .3s ease;
}

.btn-primary {
    border-color: #c5a368;
    background: #c5a368;
    color: #161614;
}

.btn-primary:hover {
    border-color: #e0c58e;
    background: #e0c58e;
}

.btn-secondary {
    border-color: rgba(255,255,255,.7);
    color: #fff;
}

.btn-secondary:hover {
    border-color: #fff;
    background: #fff;
    color: #171714;
}

.btn-link {
    color: inherit;
}


/* ----------------------------------------------------------
   GENERIC SECTIONS
   ---------------------------------------------------------- */

.section {
    padding: 130px 0;
}

.section-label {
    display: flex;
    gap: 24px;
    color: #7c786e;
    font-size: .7rem;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 70px;
}

.section-heading h2 {
    max-width: 850px;
    margin-bottom: 0;
}

.text-link,
.project-link {
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 1px solid #8c7850;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}


/* ----------------------------------------------------------
   INTRODUCTION
   ---------------------------------------------------------- */

.section-intro {
    background: #f2efe8;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 70px;
}

.intro-content {
    max-width: 900px;
}

.intro-content > p:not(.lead) {
    max-width: 690px;
    margin-top: 35px;
    color: #666158;
    font-size: 1.05rem;
}


/* ----------------------------------------------------------
   OPPORTUNITIES
   ---------------------------------------------------------- */

.section-opportunities {
    background: #171714;
    color: #f2efe8;
}

.section-opportunities .eyebrow {
    color: #c5a368;
}

.project-featured {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    min-height: 650px;
    background: #22221e;
}

.project-image {
    position: relative;
    min-height: 650px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(.2,.6,.2,1);
}

.project-featured:hover .project-image img {
    transform: scale(1.025);
}

.project-status {
    position: absolute;
    top: 25px;
    left: 25px;
    padding: 9px 13px;
    background: #c5a368;
    color: #171714;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.project-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 65px;
}

.project-location {
    margin-bottom: 18px;
    color: #a5a196;
    font-size: .68rem;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.project-content h3 {
    margin-bottom: 15px;
    font-size: clamp(2.4rem, 4vw, 4.5rem);
}

.project-type {
    margin-bottom: 30px;
    color: #c5a368;
    font-size: .73rem;
    letter-spacing: .08em;
    line-height: 1.8;
    text-transform: uppercase;
}

.project-description {
    max-width: 450px;
    color: #bbb7ae;
}

.project-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 40px 0;
    border-top: 1px solid rgba(255,255,255,.12);
    border-left: 1px solid rgba(255,255,255,.12);
}

.metric {
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.metric strong {
    display: block;
    margin-bottom: 3px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    font-weight: 400;
}

.metric span {
    color: #918e86;
    font-size: .65rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.investment-disclaimer {
    max-width: 900px;
    margin: 25px 0 0;
    color: #747169;
    font-size: .7rem;
    line-height: 1.6;
}


/* ----------------------------------------------------------
   INVESTMENT AREAS
   ---------------------------------------------------------- */

.section-areas {
    background: #e8e3da;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #bbb5aa;
    border-left: 1px solid #bbb5aa;
}

.area-card {
    min-height: 330px;
    padding: 35px;
    border-right: 1px solid #bbb5aa;
    border-bottom: 1px solid #bbb5aa;
    transition: all .35s ease;
}

.area-card:hover {
    background: #dcd4c5;
}

.area-number {
    display: block;
    margin-bottom: 100px;
    color: #8a8479;
    font-size: .68rem;
}

.area-card h3 {
    margin-bottom: 15px;
}

.area-card p {
    color: #6b675e;
    font-size: .9rem;
}


/* ----------------------------------------------------------
   INVESTMENT APPROACH
   ---------------------------------------------------------- */

.section-approach {
    background: #f4f1ea;
}

.approach-intro {
    max-width: 850px;
    margin-bottom: 80px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #cbc5b9;
}

.approach-step {
    min-height: 280px;
    padding: 30px;
    border-right: 1px solid #cbc5b9;
}

.approach-step:last-child {
    border-right: 0;
}

.approach-step > span {
    display: block;
    margin-bottom: 80px;
    color: #a18b61;
    font-size: .7rem;
}

.approach-step h3 {
    margin-bottom: 15px;
}

.approach-step p {
    max-width: 230px;
    color: #716d64;
    font-size: .9rem;
}


/* ----------------------------------------------------------
   INVESTORS
   ---------------------------------------------------------- */

.section-investors {
    padding: 150px 0;
    background: #a88850;
    color: #171714;
}

.investor-cta {
    max-width: 900px;
}

.investor-cta h2 {
    max-width: 800px;
}

.investor-cta > p {
    max-width: 630px;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.investor-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.section-investors .btn-primary {
    border-color: #171714;
    background: #171714;
    color: #fff;
}


/* ----------------------------------------------------------
   FOOTER
   ---------------------------------------------------------- */

.site-footer {
    padding: 90px 0 30px;
    background: #11110f;
    color: #d5d1c8;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 70px;
    padding-bottom: 80px;
}

.footer-logo {
    display: block;
    width: 180px;
    margin-bottom: 28px;
}

.footer-logo img {
    max-height: 50px;
    object-fit: contain;
    object-position: left center;
}

.footer-brand p {
    color: #8e8b83;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h4 {
    margin-bottom: 25px;
    color: #fff;
    font-size: .67rem;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.footer-column a {
    margin-bottom: 12px;
    color: #99968e;
    font-size: .82rem;
    transition: color .25s ease;
}

.footer-column a:hover {
    color: #c5a368;
}

.footer-column p {
    max-width: 270px;
    color: #89867e;
    font-size: .82rem;
}

.footer-contact-link {
    color: #c5a368 !important;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.12);
    color: #68665f;
    font-size: .68rem;
}

.footer-legal {
    display: flex;
    gap: 25px;
}


/* ----------------------------------------------------------
   TABLET
   ---------------------------------------------------------- */

@media (max-width: 1100px) {

    .container {
        width: min(100% - 50px, 1280px);
    }

    .header-container {
        width: calc(100% - 50px);
    }

    .main-navigation {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .project-featured {
        grid-template-columns: 1fr;
    }

    .project-image {
        min-height: 600px;
    }

    .project-content {
        padding: 60px 45px;
    }

    .areas-grid {
        grid-template-columns: 1fr 1fr;
    }

    .approach-grid {
        grid-template-columns: 1fr 1fr;
    }

    .approach-step:nth-child(2) {
        border-right: 0;
    }

    .footer-main {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-main .footer-column:last-child {
        grid-column: 1 / -1;
    }
}


/* ----------------------------------------------------------
   MOBILE
   ---------------------------------------------------------- */

@media (max-width: 720px) {

    .container {
        width: calc(100% - 36px);
    }

    .header-container {
        width: calc(100% - 36px);
        height: 80px;
    }

    .site-logo {
    width: 190px;
}

    .investor-access {
        display: none;
    }

    .header-actions {
        gap: 18px;
        margin-left: auto;
    }

    .hero-content {
        padding-top: 100px;
    }

    h1 {
        font-size: clamp(3rem, 15vw, 5rem);
    }

    h2 {
        font-size: clamp(2.5rem, 11vw, 4rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .scroll-indicator {
        display: none;
    }

    .section {
        padding: 85px 0;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .section-heading {
        display: block;
        margin-bottom: 45px;
    }

    .section-heading .text-link {
        margin-top: 25px;
    }

    .project-image {
        min-height: 420px;
    }

    .project-content {
        padding: 40px 25px;
    }

    .project-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .area-card {
        min-height: 250px;
    }

    .area-number {
        margin-bottom: 65px;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .approach-step {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid #cbc5b9;
    }

    .approach-step > span {
        margin-bottom: 45px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-main .footer-column:last-child {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-legal {
        flex-wrap: wrap;
    }


    /* MOBILE NAV */

    .mobile-navigation {
        position: fixed;
        z-index: 999;
        inset: 0;
        display: block;
        padding: 120px 30px 40px;
        background: #151513;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        transition:
            opacity .3s ease,
            visibility .3s ease,
            transform .3s ease;
    }

    body.menu-open .mobile-navigation {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mobile-navigation nav {
        display: flex;
        flex-direction: column;
    }

    .mobile-navigation a {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,.12);
        color: #fff;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 1.7rem;
    }

    .mobile-navigation .mobile-investor-link {
        margin-top: 30px;
        border-bottom: 0;
        color: #c5a368;
        font-family: Arial, Helvetica, sans-serif;
        font-size: .75rem;
        letter-spacing: .14em;
        text-transform: uppercase;
    }

}