@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

.about-page {
    background: #111;
    color: #fff;
}

/* ── TITLE ── */
.about-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 60px;
    font-weight: 400;
    text-align: center;
    color: #fff;
    margin: 0;
    padding: 64px 0 0;
    line-height: 1;
}

.about-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    line-height: 1.5;
    color: #ddd;
    text-align: center;
    max-width: 68rem;
    margin: 16px auto 0;
    padding: 0 24px;
}

.about-header {
    padding-bottom: 64px;
}

/* ── SPLIT SECTIONS (image | vline | text) ── */
.about-split {
    display: grid;
    align-items: stretch;
    min-height: 420px;
}

.about-split--img-left {
    grid-template-columns: 1.15fr 4px 1fr;
}

.about-split--img-right {
    grid-template-columns: 1fr 4px 1.15fr;
}

.about-split-img {
    overflow: hidden;
    margin-right: 4rem;
}

.about-split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-vline {
    background: #fff;
    width: 4px;
    height: 80%;
    align-self: center;
}

.about-split-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px 72px;
}

.about-split-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 24px;
    line-height: 1.3;
}

.about-split-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.75;
    color: #ddd;
    margin: 0 0 20px;
}

.about-split-text p:last-child {
    margin-bottom: 0;
}

/* ── PRIME LOCATION ── */
.about-location {
    padding: 132px 80px 0;
}

.about-location-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 400;
    text-align: center;
    color: #fff;
    margin: 0 0 56px;
    line-height: 1;
}

.about-location-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
    padding-bottom: 80px;
}

.about-location-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #ddd;
    margin: 0 0 16px;
}

.about-location-text p:last-child {
    margin-bottom: 0;
}

/* ── UNBEATABLE LOCATION (light bg) ── */
.about-unbeatable {
    background: #f2f0ec;
    padding: 72px 80px 72px;
    text-align: center;
}

.about-unbeatable h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #111;
    margin: 0 0 20px;
}

.about-unbeatable p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.85;
    color: #555;
    margin: 0 auto 24px;
}

.about-unbeatable-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #111;
    margin: 0;
    letter-spacing: 0.02em;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .about-title { font-size: 44px; padding: 48px 0 0; }
    .about-location-title { font-size: 40px; }
    .about-split-text { padding: 40px 48px; }
    .about-location { padding: 64px 40px 0; }
    .about-location-grid { gap: 40px; }
    .about-unbeatable { padding: 56px 40px; }
}

@media (max-width: 768px) {
    .about-split--img-left,
    .about-split--img-right {
        grid-template-columns: 1fr;
    }
    .about-vline { display: none; }
    .about-split-img { min-height: 260px; }
    .about-split-text { padding: 36px 24px; }
    .about-title { font-size: 34px; }
    .about-location { padding: 48px 24px 0; }
    .about-location-title { font-size: 32px; margin-bottom: 32px; }
    .about-location-grid { grid-template-columns: 1fr; gap: 28px; }
    .about-unbeatable { padding: 48px 24px; }
}
