@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

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

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

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

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

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

.about-split-img {
    overflow: hidden;
}

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

/* Thin vertical white line divider */
.about-vline {
    background: rgba(255, 255, 255, 0.18);
    width: 1px;
    align-self: stretch;
}

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

.about-split-text h2 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 26px;
    font-weight: 400;
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.3;
}

.about-split-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    line-height: 1.85;
    color: #aaa;
    margin: 0;
}

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

.about-location-title {
    font-family: 'Libre Baskerville', Georgia, 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-map {
    width: 100%;
    display: block;
    object-fit: cover;
}

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

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

.about-unbeatable h3 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 26px;
    font-weight: 400;
    color: #111;
    margin: 0 0 20px;
}

.about-unbeatable p {
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    line-height: 1.85;
    color: #555;
    max-width: 780px;
    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; }
}
