/* ==========================================
   about.css
   Scoped styles for the About Us page only.
   All classes prefixed .au- — zero conflict
   with style.css or any other page CSS.
   ========================================== */

/* ── Page base ─────────────────────────── */
.au-page .au-main {
    background: #f9f7f4;
    padding-bottom: 48px;
}

/* ── Breadcrumb ─────────────────────────── */
.au-breadcrumb {
    padding: 14px 0 10px;
}

.au-breadcrumb .breadcrumb {
    font-size: 13px;
    margin: 0;
    background: none;
    padding: 0;
}

.au-breadcrumb .breadcrumb-item a {
    color: #555;
    text-decoration: none;
    transition: color .2s;
}

.au-breadcrumb .breadcrumb-item a:hover {
    color: #e8a020;
}

.au-breadcrumb .breadcrumb-item.active {
    color: #1a1a1a;
    font-weight: 700;
}

.au-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: #bbb;
}

/* ── Hero Banner ────────────────────────── */
.au-hero-banner {
    position: relative;
    background: #FAF7F2;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 290px;
    margin-bottom: 36px;
    border: 1px solid #e4e0d8;
    padding: 24px;
}

.au-hero-text {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    max-width: 480px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(253, 250, 244, 0.95) 100%);
    border: 1px solid rgba(228, 224, 216, 0.7);
    border-radius: 20px;
    padding: 38px 44px;
    display: flex;
    margin-top: 15rem;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.02);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.au-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    color: #1a3c34;
    margin: 0;
    line-height: 1.1;
}

.au-hero-desc {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

.au-hero-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.au-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

@media (max-width: 767px) {
    .au-hero-banner {
        flex-direction: column;
        align-items: stretch;
        min-height: auto;
        padding: 0;
        background: #FAF7F2;
    }

    .au-hero-text {
        position: relative;
        max-width: 100%;
        padding: 28px 20px;
        border-radius: 18px 18px 0 0;
        border: none;
        border-bottom: 1px solid #e4e0d8;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
    }

    .au-hero-img {
        position: relative;
        height: 220px;
        width: 100%;
        z-index: 1;
    }
}

/* ── Section spacing ────────────────────── */
.au-section {
    margin-bottom: 44px;
}

.au-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    color: #1a3c34;
    margin-bottom: 16px;
}

/* ── Story Section ──────────────────────── */
.au-story-section {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e4e0d8;
    padding: 36px 32px 28px;
}

.au-story-text {
    padding-right: 16px;
}

.au-story-para {
    font-size: 14px;
    color: #555;
    line-height: 1.75;
    max-width: 560px;
    margin: 0;
}

/* ── Stats Row ──────────────────────────── */
.au-stats-row {
    margin-top: 28px;
}

.au-stat-card {
    background: #faf8f5;
    border: 1.5px solid #ede9e2;
    border-radius: 14px;
    padding: 24px 20px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    transition: all .25s ease;
}

.au-stat-card:hover {
    box-shadow: 0 6px 22px rgba(0, 0, 0, .09);
    border-color: #e8a020;
    transform: translateY(-3px);
}

/* Icon circle */
.au-stat-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #f2ede4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #1a3c34;
    flex-shrink: 0;
}

.au-stat-icon--green {
    background: #e0ede7;
    color: #1a3c34;
}

.au-stat-icon--amber {
    background: #fef3e2;
    color: #e8a020;
}

.au-stat-title {
    font-size: 16px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    font-family: 'Nunito', sans-serif;
}

.au-stat-desc {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    margin: 0;
}

/* ── What We Offer ──────────────────────── */
.au-offer-intro {
    font-size: 14px;
    color: #555;
    line-height: 1.65;
    margin-bottom: 24px;
    max-width: 700px;
}

.au-offer-card {
    background: #fff;
    border: 1.5px solid #e4e0d8;
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all .25s ease;
}

.au-offer-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, .1);
    border-color: #e8a020;
    transform: translateY(-4px);
}

.au-offer-img-wrap {
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
}

.au-offer-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.au-offer-card:hover .au-offer-img-wrap img {
    transform: scale(1.06);
}

.au-offer-body {
    padding: 16px 18px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.au-offer-icon-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2px;
}

.au-offer-emoji {
    font-size: 20px;
    line-height: 1;
}

.au-offer-paw-icon {
    width: 30px;
    height: 30px;
    background: #f2ede4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #e8a020;
    flex-shrink: 0;
}

.au-offer-title {
    font-size: 16px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    font-family: 'Nunito', sans-serif;
}

.au-offer-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ── Meet Our Team ──────────────────────── */
.au-team-section {}

.au-team-card {
    background: #fff;
    border: 1.5px solid #e4e0d8;
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
    transition: all .25s ease;
}

.au-team-card:hover {
    box-shadow: 0 6px 22px rgba(0, 0, 0, .1);
    border-color: #e8a020;
    transform: translateY(-3px);
}

.au-team-img-wrap {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.au-team-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .35s ease;
}

.au-team-card:hover .au-team-img-wrap img {
    transform: scale(1.05);
}

.au-team-name {
    font-size: 14px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 12px 12px 3px;
    font-family: 'Nunito', sans-serif;
}

.au-team-role {
    font-size: 12px;
    color: #888;
    margin: 0 12px 14px;
}

/* ── CTA Card ───────────────────────────── */
.au-cta-card {
    background: #1a3c34;
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    width: 100%;
    min-height: 220px;
}

.au-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.au-cta-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .72);
    margin: 0;
    line-height: 1.5;
}

.au-cta-btn {
    display: inline-block;
    background: #e8a020;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
    padding: 12px 36px;
    border-radius: 9px;
    text-decoration: none;
    margin-top: 4px;
    transition: background .2s ease;
    width: 100%;
    text-align: center;
}

.au-cta-btn:hover {
    background: #d4911c;
    color: #fff;
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 991px) {
    .au-cta-card {
        min-height: 160px;
        padding: 24px 20px;
    }
}

@media (max-width: 767px) {
    .au-story-section {
        padding: 22px 16px 18px;
    }

    .au-team-img-wrap {
        height: 130px;
    }

    .au-offer-img-wrap {
        height: 150px;
    }
}

@media (max-width: 575px) {
    .au-offer-img-wrap {
        height: 140px;
    }

    .au-stat-title {
        font-size: 14px;
    }
}