/* ==========================
   ABOUT HERO
========================== */


.about-hero h1 {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    line-height: .95;
    margin-bottom: 1.5rem;
}

.about-hero p:last-child {
    font-size: 1.25rem;
    max-width: 900px;
}

.about-hero {
    padding: clamp(5rem, 9vw, 8.5rem) 0;
    background: #fff;
    padding: 10rem 0 4rem;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
    align-items: center;
    gap: clamp(3rem, 8vw, 8rem);
}

.about-hero-content {
    max-width: 760px;
}

.about-hero-content h1 {
    margin: 0 0 1.5rem;
}

.about-hero-summary {
    max-width: 680px;
    margin: 0;
}

.about-hero-mark {
    display: flex;
    align-self:start;
    padding-top:2rem;
}

.about-hero-mark img {
    width:380px;
    opacity:.85;
}

@media (max-width: 991.98px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-hero-mark {
        justify-content: flex-start;
    }

    .about-hero-mark img {
        width: min(70%, 300px);
    }
}

@media (max-width: 575.98px) {
    .about-hero {
        padding: 4rem 0;
    }

    .about-hero-mark img {
        width: min(82%, 260px);
    }
}

/* ==========================
   STORY
========================== */

.about-story {
    background: white;
    padding-top: 3rem;
}

.about-story h2,
.about-feature h2,
.about-restoration h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1;
}

.btp-image-caption {
    font-size: .85rem;
    color: #777;
    margin-top: 1rem;
    text-align: center;
    font-style: italic;
}

/* ==========================
   HIGHLIGHTS
========================== */

.about-highlights {
    padding: 6rem 0;
    background: white;
}

.about-highlight-card {
    height: 100%;
}

.about-highlight-card span,
.highlight-number {
    display: inline-block;
    color: var(--btp-gold);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.about-highlight-card h3 {
    font-size: 1.75rem;
}

/* ==========================
   FEATURE / PLANS
========================== */

.about-feature {
    padding: 5rem 0;
    background: white;
    color: var(--btp-text);
}

.about-feature .section-eyebrow {
    color: var(--btp-gold);
}

.about-feature p {
    color: var(--btp-text);
}

.about-feature-image img {
    width: 100%;
}

/* ==========================
   TIMELINE
========================== */

.about-timeline {
    padding: 6rem 0;
    background: var(--btp-ivory);
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.timeline-card {
    background: #fff;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,.06);
    height: 100%;
}

.timeline-card .year {
    display: block;
    font-size: 2.25rem;
    color: var(--btp-gold);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
}

.timeline-card h3 {
    font-size: 1.5rem;
    margin-bottom: .75rem;
}

.timeline-card p {
    margin-bottom: 0;
}

/* ==========================
   RESTORATION
========================== */

.about-restoration {
    background: white;
    padding: 6rem 0;
}

/* ==========================
   TODAY GALLERY
========================== */

.about-today {
    padding: 6rem 0;
    background: var(--btp-ivory);
}

.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.about-gallery-grid img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
}

/* ==========================
   QUOTE
========================== */

.about-quote {
    padding: 7rem 0;
    background: var(--btp-navy);
    color: white;
    text-align: center;
}

.about-quote blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.about-quote p {
    color: var(--btp-cream);
    margin: 0;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 991.98px) {

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

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

    .about-gallery-grid img {
        height: 420px;
    }
}

@media (max-width: 767.98px) {

    .about-hero {
        padding: 9rem 0 3rem;
    }

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

    .about-gallery-grid img {
        height: 280px;
    }
}

/* ==========================
   ABOUT POLISH
========================== */

.about-story img,
.about-feature-image img,
.about-restoration img,
.about-gallery-grid img {
    transition: transform .6s ease, box-shadow .3s ease;
}

.about-story img:hover,
.about-feature-image img:hover,
.about-restoration img:hover,
.about-gallery-grid img:hover {
    transform: scale(1.015);
}

.timeline-card {
    transition: transform .25s ease, box-shadow .25s ease;
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0,0,0,.09);
}

.about-highlight-card {
    transition: transform .25s ease;
}

.about-highlight-card:hover {
    transform: translateY(-4px);
}
