/* =========================================================
   Ascot Graphics - About Us page CSS (prefix: aab-)
   ========================================================= */


/* ---------- Banner hero (chocolate, pill nav clears over) ---------- */
.aab-hero {
    position: relative;
    padding: clamp(9rem, 15vw, 12rem) 0 clamp(3rem, 6vw, 4.5rem);
    background:
        linear-gradient(180deg, var(--charcoal) 0%, #4A3529 100%);
    overflow: hidden;
    isolation: isolate;
}
.aab-hero::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 340px;
    height: 340px;
    background: var(--brand);
    border-radius: 50%;
    opacity: 0.12;
    z-index: 0;
}
.aab-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
}
.aab-hero__eyebrow {
    display: block;
    color: var(--brand);
    margin-bottom: 0.85rem;
}
.aab-hero__title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 500;
    margin: 0 0 1.25rem;
}
.aab-hero__title::after {
    content: "";
    display: block;
    width: 68px;
    height: 4px;
    background: var(--brand);
    margin-top: 1.5rem;
    border-radius: 2px;
}
.aab-hero__lead {
    color: var(--on-charcoal);
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 62ch;
    margin: 0;
}


/* ---------- The approach (intro + feature cards + name your price) ---------- */
.aab-intro__head {
    max-width: 720px;
    margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
}
.aab-intro__head .section__eyebrow {
    display: block;
    margin-bottom: 0.85rem;
}
.aab-intro__head h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin: 0.5rem 0 0;
    letter-spacing: -0.015em;
    display: inline-block;
}
.aab-intro__head h2::after {
    content: "";
    display: block;
    width: 56px;
    height: 3px;
    background: var(--brand);
    margin: 1rem auto 0;
    border-radius: 2px;
}
.aab-intro__lead {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.7;
    margin: 1.5rem auto 0;
    max-width: 58ch;
}

/* Two feature cards - For print + For digital */
.aab-approach {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    max-width: 960px;
    margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}
.aab-approach__card {
    background: var(--white);
    border: 0.5px solid var(--grey-line);
    border-radius: var(--radius-lg);
    padding: clamp(1.75rem, 3vw, 2.25rem);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}
.aab-approach__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease);
}
.aab-approach__card:hover {
    transform: translateY(-4px);
    border-color: var(--brand);
    box-shadow: var(--shadow-md);
}
.aab-approach__card:hover::before {
    transform: scaleX(1);
}
.aab-approach__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--brand);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}
.aab-approach__card h3 {
    font-size: 1.4rem;
    margin: 0 0 0.65rem;
    color: var(--charcoal);
    letter-spacing: -0.015em;
}
.aab-approach__card > p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1.25rem;
}
.aab-approach__examples {
    list-style: none;
    margin: 0;
    padding: 1.25rem 0 0;
    border-top: 0.5px solid var(--grey-line);
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.aab-approach__examples li {
    color: var(--charcoal);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.aab-approach__examples li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--brand);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Name your price callout - upgraded to chocolate with decor + CTA */
.aab-nameprice {
    background:
        linear-gradient(180deg, var(--charcoal) 0%, #4A3529 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 4vw, 3rem);
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.aab-nameprice::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    background: var(--brand);
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
}
.aab-nameprice__content {
    position: relative;
    z-index: 1;
}
.aab-nameprice__badge {
    display: inline-block;
    padding: 0.45rem 1rem;
    background: var(--brand);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    margin-bottom: 1.25rem;
}
.aab-nameprice h3 {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    margin: 0 0 0.85rem;
    color: var(--white);
    letter-spacing: -0.015em;
    line-height: 1.15;
}
.aab-nameprice p {
    color: var(--on-charcoal);
    line-height: 1.65;
    margin: 0;
    font-size: 1.02rem;
    max-width: 52ch;
}
.aab-nameprice__action {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
}


/* ---------- Meet Craig ---------- */
.aab-craig__inner {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: center;
}
.aab-craig__media {
    position: relative;
    padding: 0 1.25rem 1.25rem 0;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
}
.aab-craig__media::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 55%;
    background: var(--brand);
    border-radius: var(--radius-lg);
    z-index: 0;
}
.aab-craig__media::after {
    content: "";
    position: absolute;
    top: 1.25rem;
    left: -1.25rem;
    width: 55%;
    height: 55%;
    background: var(--white);
    border-radius: var(--radius-lg);
    z-index: 0;
}
.aab-craig__media img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: block;
    filter: saturate(1.05);
}
.aab-craig__content .section__eyebrow {
    display: block;
    margin-bottom: 0.85rem;
}
.aab-craig__content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin: 0.5rem 0 0;
    letter-spacing: -0.015em;
    display: inline-block;
}
.aab-craig__content h2::after {
    content: "";
    display: block;
    width: 56px;
    height: 3px;
    background: var(--brand);
    margin-top: 1rem;
    border-radius: 2px;
}
.aab-craig__lead {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.7;
    margin: 1.5rem 0 0;
    max-width: 52ch;
}


/* ---------- Business Finder Directories cross-link ---------- */
.aab-bfd__card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
    border: 0.5px solid var(--grey-line);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}
.aab-bfd__card::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -80px;
    width: 240px;
    height: 240px;
    background: var(--tint);
    border-radius: 50%;
    z-index: 0;
}

/* Directory cover previews - stacked with slight rotation for depth */
.aab-bfd__covers {
    position: relative;
    z-index: 1;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.aab-bfd__cover {
    position: absolute;
    height: 100%;
    width: auto;
    max-width: 190px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 12px 32px rgba(42, 29, 24, 0.18);
    transition: transform 0.35s var(--ease);
}
.aab-bfd__cover--back {
    left: 50%;
    transform: translateX(-72%) rotate(-6deg);
    z-index: 1;
    opacity: 0.9;
}
.aab-bfd__cover--front {
    left: 50%;
    transform: translateX(-28%) rotate(4deg);
    z-index: 2;
}
.aab-bfd__card:hover .aab-bfd__cover--back {
    transform: translateX(-78%) rotate(-8deg);
}
.aab-bfd__card:hover .aab-bfd__cover--front {
    transform: translateX(-22%) rotate(6deg);
}

/* Body content */
.aab-bfd__body {
    position: relative;
    z-index: 1;
}
.aab-bfd__body .section__eyebrow {
    display: block;
    margin-bottom: 0.75rem;
}
.aab-bfd__body h2 {
    color: var(--charcoal);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin: 0 0 0.85rem;
    letter-spacing: -0.01em;
    line-height: 1.15;
}
.aab-bfd__body p {
    color: var(--muted);
    margin: 0 0 1.75rem;
    line-height: 1.65;
    max-width: 52ch;
}


/* ---------- Contact CTA ---------- */
.aab-cta {
    padding-bottom: clamp(4rem, 8vw, 6rem);
}
.aab-cta__card {
    background:
        linear-gradient(180deg, var(--charcoal) 0%, #4A3529 100%);
    border-radius: var(--radius-lg);
    padding: clamp(2.5rem, 5vw, 4rem);
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.aab-cta__card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 260px;
    height: 260px;
    background: var(--brand);
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
}
.aab-cta__content {
    position: relative;
    z-index: 1;
}
.aab-cta__content .section__eyebrow {
    display: block;
    color: var(--brand);
    margin-bottom: 0.75rem;
}
.aab-cta__content h2 {
    color: var(--white);
    font-size: clamp(1.65rem, 2.8vw, 2.15rem);
    margin: 0 0 0.75rem;
    line-height: 1.15;
}
.aab-cta__content p {
    color: var(--on-charcoal);
    margin: 0;
    max-width: 46ch;
    line-height: 1.6;
}
.aab-cta__actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
}
.aab-cta__phone {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--on-charcoal);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s var(--ease);
}
.aab-cta__phone:hover {
    color: var(--white);
}
.aab-cta__phone i {
    color: var(--brand);
    font-size: 0.95rem;
}


/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .aab-approach {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .aab-nameprice {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .aab-nameprice__action {
        justify-content: stretch;
    }
    .aab-nameprice__action .btn {
        width: 100%;
        justify-content: center;
    }
    .aab-craig__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .aab-craig__media {
        max-width: 340px;
    }
    .aab-craig__content {
        text-align: center;
    }
    .aab-craig__content h2::after {
        margin-left: auto;
        margin-right: auto;
    }
    .aab-craig__lead {
        margin-left: auto;
        margin-right: auto;
    }
    .aab-bfd__card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .aab-bfd__covers {
        height: 220px;
    }
    .aab-bfd__cover {
        max-width: 160px;
    }
    .aab-cta__card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .aab-cta__actions {
        align-items: stretch;
    }
    .aab-cta__actions .btn {
        justify-content: center;
    }
    .aab-cta__phone {
        justify-content: center;
    }
}
