/* ============================================================
   Jeff's Barber — about.css
   ============================================================ */

/* ── PAGE HEADER ──────────────────────────────────────────── */
.page-header {
    background: var(--black);
    color: var(--white);
    padding: 5rem 2.5rem 4rem;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 7rem);
    letter-spacing: 0.03em;
    line-height: 0.95;
    margin-bottom: 1rem;
}

/* ── INTRO SPLIT ──────────────────────────────────────────── */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
}

.about-intro-img {
    position: relative;
    overflow: hidden;
}

.about-intro-img img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-intro-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.about-intro-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-intro-text {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    background: var(--white);
}

.about-intro-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    letter-spacing: 0.04em;
    line-height: 1;
    color: var(--black);
}

.about-intro-text h3 {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: -0.4rem;
}

.about-intro-text p {
    font-size: 0.92rem;
    color: #444;
    line-height: 1.8;
    max-width: 480px;
}

/* ── FAMILY SECTION ───────────────────────────────────────── */
.about-family {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    background: var(--black);
}

.about-family-text {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    color: var(--white);
    order: 1;
}

.about-family-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    letter-spacing: 0.04em;
    line-height: 1;
}

.about-family-text p {
    font-size: 0.92rem;
    color: #aaa;
    line-height: 1.8;
    max-width: 480px;
}

.about-family-img {
    order: 2;
    overflow: hidden;
}

.about-family-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: grayscale(20%);
    transition: filter 0.4s;
}

.about-family-img img:hover {
    filter: grayscale(0%);
}

/* ── INFO SECTION ─────────────────────────────────────────── */
.about-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid #e0e0dc;
}

.info-card {
    padding: 4rem 3rem;
}

.info-card:first-child {
    border-right: 1px solid #e0e0dc;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
}

.hours-img {
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius);
}

.info-card h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 0.04em;
    margin-bottom: 0.8rem;
}

.info-address {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.info-amenities {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 2rem;
}

.info-amenities li {
    font-size: 0.85rem;
    color: #555;
    letter-spacing: 0.02em;
}

.info-qr {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e8e8e4;
}

.info-qr p {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    max-width: 100px;
}

.info-qr img {
    width: 150px;
    height: 150px;
    border-radius: var(--radius);
    border: 1px solid #e0e0dc;
}

/* ── BOTTOM CTA ───────────────────────────────────────────── */
.bottom-cta {
    text-align: center;
    padding: 6rem 2.5rem;
    border-top: 1px solid #e0e0dc;
}

.bottom-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.03em;
    margin-bottom: 0.8rem;
}

.bottom-cta p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.hero-btn {
    display: inline-block;
    background: var(--accent);
    color: var(--black);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 1rem 2.8rem;
    border-radius: var(--radius);
    transition: opacity 0.2s, transform 0.2s;
}

.hero-btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 768px) {
    .about-intro,
    .about-family,
    .about-info {
        grid-template-columns: 1fr;
    }

    .about-intro-img {
        min-height: 300px;
    }

    .about-family-img {
        min-height: 300px;
        order: -1;
    }

    .info-card:first-child {
        border-right: none;
        border-bottom: 1px solid #e0e0dc;
    }
}