/* ═══════════════════════════════════════════════════════
   McGee & Company — Reviews Page
   Scope: .mjr
   Colors: Navy #2A2E7F | Gold #D4AF37
   Paste into: Punchmark Site Manager > Global CSS
   ═══════════════════════════════════════════════════════ */

/* ── Variables ───────────────────────────────────────── */
.mjr {
    --mjr-navy:       #2A2E7F;
    --mjr-navy-dark:  #1e2260;
    --mjr-gold:       #D4AF37;
    --mjr-gold-light: #e8cb6a;
    --mjr-white:      #ffffff;
    --mjr-off-white:  #f8f8f6;
    --mjr-text:       #1a1a2e;
    --mjr-muted:      #6b6b80;
    --mjr-border:     #e4e4ec;
    font-family: inherit;
}

/* ── Hero Overview ───────────────────────────────────── */
.mjr__hero {
    background: var(--mjr-navy);
    padding: 64px 32px;
    position: relative;
    overflow: hidden;
}

.mjr__hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.06);
    pointer-events: none;
}

.mjr__hero::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.04);
    pointer-events: none;
}

.mjr__hero-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 56px;
    position: relative;
    z-index: 1;
}

.mjr__score-block {
    text-align: center;
    flex-shrink: 0;
    min-width: 160px;
}

.mjr__score-number {
    font-size: 80px;
    font-weight: 800;
    color: var(--mjr-gold);
    line-height: 1;
    letter-spacing: -3px;
}

.mjr__stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin: 10px 0 8px;
}

.mjr__stars span {
    color: var(--mjr-gold);
    font-size: 24px;
}

.mjr__score-label {
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.mjr__score-sub {
    color: rgba(255,255,255,0.45);
    font-size: 11px;
    margin-top: 4px;
    letter-spacing: 0.02em;
}

.mjr__hero-divider {
    width: 1px;
    height: 140px;
    background: rgba(212, 175, 55, 0.3);
    flex-shrink: 0;
}

.mjr__eyebrow {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mjr-gold);
    font-weight: 600;
    margin-bottom: 12px;
}

.mjr__hero-heading {
    font-size: 30px;
    font-weight: 700;
    color: var(--mjr-white);
    margin: 0 0 14px;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.mjr__hero-body {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255,255,255,0.78);
    margin: 0 0 24px;
}

.mjr__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--mjr-gold);
    color: var(--mjr-navy) !important;
    padding: 13px 28px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: background 0.2s ease, transform 0.15s ease;
}

.mjr__cta-btn:hover {
    background: var(--mjr-gold-light);
    transform: translateY(-1px);
}

.mjr__cta-icon {
    font-size: 14px;
}

/* ── Stats Bar ───────────────────────────────────────── */
.mjr__stats-bar {
    background: var(--mjr-navy-dark);
    padding: 28px 32px;
    border-top: 1px solid rgba(212,175,55,0.2);
    border-bottom: 1px solid rgba(212,175,55,0.2);
}

.mjr__stats-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.mjr__stat {
    text-align: center;
    flex: 1;
}

.mjr__stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--mjr-gold);
    line-height: 1;
    letter-spacing: -1px;
}

.mjr__stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 6px;
}

.mjr__stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(212,175,55,0.2);
    flex-shrink: 0;
}

/* ── Reviews Grid ────────────────────────────────────── */
.mjr__reviews {
    background: var(--mjr-off-white);
    padding: 64px 32px;
}

.mjr__reviews-inner {
    max-width: 960px;
    margin: 0 auto;
}

.mjr__section-label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mjr-navy);
    font-weight: 700;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--mjr-gold);
    display: inline-block;
}

.mjr__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ── Review Card ─────────────────────────────────────── */
.mjr__card {
    background: var(--mjr-white);
    border: 1px solid var(--mjr-border);
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.mjr__card:hover {
    box-shadow: 0 8px 32px rgba(42, 46, 127, 0.1);
    transform: translateY(-2px);
}

.mjr__card--featured {
    grid-column: span 2;
    border-left: 3px solid var(--mjr-gold);
}

.mjr__card-stars {
    color: var(--mjr-gold);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.mjr__card-quote {
    font-size: 14px;
    line-height: 1.75;
    color: var(--mjr-text);
    margin: 0 0 24px;
    flex-grow: 1;
    font-style: italic;
}

.mjr__card-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--mjr-border);
}

.mjr__card-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--mjr-navy);
    color: var(--mjr-white);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.mjr__card-meta {
    flex-grow: 1;
}

.mjr__card-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--mjr-text);
}

.mjr__card-date {
    font-size: 11px;
    color: var(--mjr-muted);
    margin-top: 2px;
}

.mjr__card-google-icon {
    flex-shrink: 0;
    opacity: 0.7;
}

/* ── CTA Card ────────────────────────────────────────── */
.mjr__card--cta {
    background: var(--mjr-navy);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mjr__card--cta:hover {
    box-shadow: 0 8px 32px rgba(42, 46, 127, 0.25);
}

.mjr__cta-card-inner {
    text-align: center;
}

.mjr__cta-card-stars {
    color: var(--mjr-gold);
    font-size: 22px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.mjr__cta-card-heading {
    font-size: 17px;
    font-weight: 700;
    color: var(--mjr-white);
    margin: 0 0 10px;
}

.mjr__cta-card-body {
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255,255,255,0.65);
    margin: 0 0 20px;
}

.mjr__cta-card-btn {
    display: inline-block;
    background: var(--mjr-gold);
    color: var(--mjr-navy) !important;
    padding: 11px 22px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: background 0.2s ease;
}

.mjr__cta-card-btn:hover {
    background: var(--mjr-gold-light);
}

/* ── Bottom CTA Strip ────────────────────────────────── */
.mjr__bottom-cta {
    background: var(--mjr-navy);
    padding: 48px 32px;
    border-top: 3px solid var(--mjr-gold);
}

.mjr__bottom-cta-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.mjr__bottom-cta-heading {
    font-size: 22px;
    font-weight: 700;
    color: var(--mjr-white);
    margin: 0 0 8px;
}

.mjr__bottom-cta-sub {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255,255,255,0.65);
    margin: 0;
    max-width: 560px;
}

.mjr__bottom-cta-btn {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--mjr-gold);
    color: var(--mjr-gold) !important;
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none !important;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease;
}

.mjr__bottom-cta-btn:hover {
    background: var(--mjr-gold);
    color: var(--mjr-navy) !important;
}

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

    .mjr__card--featured {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .mjr__hero-inner {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .mjr__hero-divider {
        width: 60px;
        height: 1px;
    }

    .mjr__score-number {
        font-size: 64px;
    }

    .mjr__stats-inner {
        flex-wrap: wrap;
        gap: 24px;
    }

    .mjr__stat-divider {
        display: none;
    }

    .mjr__stat {
        flex: 0 0 45%;
    }

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

    .mjr__card--featured {
        grid-column: span 1;
    }

    .mjr__bottom-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .mjr__bottom-cta-sub {
        max-width: 100%;
    }
}

/* ═══════════════════════════════════════════════════════
   End McGee Reviews Page
   ═══════════════════════════════════════════════════════ */
