*, *::before, *::after { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    color: #fff;
    background: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.page {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3.5vw 4vw;
    overflow: hidden;
}

.bg {
    position: absolute;
    inset: 0;
    background-image: url("assets/TPM004_Website_Image.png");
    background-position: center bottom;
    background-size: 115% auto;
    background-repeat: no-repeat;
    z-index: 0;
}

@media (max-width: 900px) {
    .bg { background-size: cover; background-position: center bottom; }
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.9) 0%,
        rgba(0,0,0,0.55) 18%,
        rgba(0,0,0,0.1) 50%,
        rgba(0,0,0,0.55) 82%,
        rgba(0,0,0,0.9) 100%
    );
    z-index: 1;
}

.top, .bottom {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 3vw;
}

.top { align-items: flex-start; }
.bottom { align-items: flex-end; }

.brand {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.logos-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.copy { max-width: 36rem; }

.wx-logo {
    width: 18rem;
    max-width: 32vw;
}

.location,
.headline,
.size {
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 31px;
    color: #FFFFFF;
    text-align: left;
    text-transform: none;
    letter-spacing: normal;
    margin: 0 0 1.25rem;
}

.location { font-weight: 700; }
.size { margin-bottom: 0; }

.tritax img {
    width: 14rem;
    max-width: 26vw;
}

.agents {
    display: flex;
    gap: 5rem;
    flex-wrap: wrap;
    align-items: flex-start;
}

.agent-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.agent-logo-wrap {
    display: flex;
    align-items: flex-end;
    height: 3.25rem;
}

.agent-logo {
    width: auto;
    max-width: none;
    object-fit: contain;
}

.agent-logo.jll { height: 3.25rem; }
.agent-logo.savills { height: 2.5rem; }

.agent-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.agent p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.35;
}

.agent .name { font-weight: 700; }
.agent .email a:hover { text-decoration: underline; }

.actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    min-width: 16rem;
}

.btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    border: 1.5px solid #4ec5b8;
    border-radius: 999px;
    color: #4ec5b8;
    font-weight: 400;
    font-size: 0.95rem;
    text-align: center;
    letter-spacing: 0.02em;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.btn:hover, .btn:focus {
    background: #4ec5b8;
    color: #000;
}

@media (max-width: 900px) {
    .page { padding: 6vw 6vw; gap: 3rem; }
    .bottom {
        flex-direction: column;
        align-items: stretch;
        gap: 2.5rem;
    }
    .actions { order: 1; min-width: 0; }
    .agents { order: 2; gap: 2.5rem; }
    .tritax img { width: 9rem; max-width: 28vw; }
    .location, .headline, .size { font-size: 24px; line-height: 26px; }
    .btn {
        background: #4ec5b8;
        color: #000;
    }
    .btn:hover, .btn:focus, .btn:active {
        background: #fff;
        color: #000;
        border-color: #fff;
    }
}

@media (max-width: 480px) {
    .wx-logo { width: 12rem; }
    .location, .headline, .size { font-size: 20px; line-height: 22px; }
    .btn { padding: 0.65rem 1.2rem; font-size: 0.9rem; }
}
