/* ============================================================
   about.css — Page-specific styles for about.html
   VisitSplit
   ============================================================ */
/*  Page Hero  */
.page-hero {
    background: var(--navy);
    padding: 3.5rem 2rem 3rem;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/webp/about-hero.webp') center / cover no-repeat;
    opacity: .30;
}

.page-hero-inner {
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.page-hero .eyebrow {
    color: var(--mist);
}

.page-hero .eyebrow::before {
    background: var(--mist);
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: .75rem;
}

.page-hero h1 em {
    color: var(--mist);
    font-style: italic;
}

.page-hero p {
    color: rgba(255, 255, 255, .65);
    font-size: 15px;
    max-width: 560px;
    line-height: 1.75;
}

.page-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

/*  Intro Section  */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-text h2 {
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    font-size: 28px;
    margin-bottom: .75rem;
}

.intro-text p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/*  Facts Strip  */
.facts-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.fact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-align: center;
}

.fact-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.fact-num {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
}

.fact-label {
    font-size: 11px;
    color: var(--muted);
    margin-top: 3px;
}

/*  Photo Gallery  */
.photo-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: .75rem;
    margin-top: 1.5rem;
}

.photo-gallery .img-ph {
    height: 100%;
    border-radius: var(--radius);
}

.photo-gallery .img-ph:first-child {
    grid-row: 1 / 3;
}

/*  Neighbourhood Grid  */
.hood-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.hood-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}

.hood-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.hood-img .img-ph {
    height: 140px;
    border-radius: 0;
    border: none;
}

.hood-header {
    padding: 1rem 1.25rem .5rem;
}

.hood-name {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 3px;
}

.hood-subtitle {
    font-size: 11px;
    color: var(--sky);
    font-weight: 600;
}

.hood-body {
    padding: .5rem 1.25rem 1.25rem;
}

.hood-desc {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.65;
}

/*  Climate Table  */
.climate-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.climate-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    background: var(--white);
}

.climate-table th {
    background: var(--navy);
    color: var(--white);
    padding: 10px 12px;
    text-align: center;
    font-weight: 600;
    font-size: 12px;
}

.climate-table th:first-child {
    text-align: left;
}

.climate-table td {
    padding: 9px 12px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.climate-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--navy);
}

.climate-table tr:last-child td {
    border-bottom: none;
}

.climate-table tr:nth-child(even) td {
    background: var(--bg);
}

.temp-high {
    color: #c62828;
    font-weight: 700;
}

.temp-low {
    color: var(--ocean);
    font-weight: 700;
}

/*  Culture & Geography  */
.culture-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.map-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.map-wrap iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}

.geo-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 2rem;
    align-items: start;
}

.geo-info {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.geo-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    color: var(--navy);
    margin-bottom: 1rem;
}

.geo-row {
    display: flex;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    color: var(--muted);
}

.geo-row:last-child {
    border-bottom: none;
}

.geo-row span:first-child {
    font-size: 16px;
    flex-shrink: 0;
}

/*  Language / Phrase List  */
.phrase-li {
    font-size: 13px;
    color: var(--muted);
    padding: 6px 0 6px 1.25rem;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.phrase-li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--sky);
    font-size: 11px;
}

.phrase-li:last-child {
    border-bottom: none;
}

/*  Season Grid  */
.season-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

/*  Responsive  */
@media (max-width: 900px) {
    .geo-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 28px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .facts-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .hood-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .culture-grid {
        grid-template-columns: 1fr;
    }

    .photo-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .photo-gallery .img-ph:first-child {
        grid-row: auto;
        grid-column: 1 / 3;
    }

    .season-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .facts-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .hood-grid {
        grid-template-columns: 1fr;
    }

    .photo-gallery {
        grid-template-columns: 1fr;
    }

    .photo-gallery .img-ph:first-child {
        grid-column: auto;
    }
}