/**
 * Blade Boss About Page Styles
 * THE CREDIBILITY PAGE — where skeptics become believers.
 * 
 * Zero !important. Uses design-tokens.css variables.
 * bb- prefixed keyframes to prevent collisions.
 * 
 * Sections:
 *   1. Hero (full-viewport, parallax bg)
 *   2. Mission card (glassmorphism)
 *   3. Story grid (sticky sidebar + chapters)
 *   4. Values ("The Blade Boss Code")
 *   5. Gallery (hover overlays)
 *   6. Stats bar (animated counters)
 *   7. Testimonials (card grid)
 *   8. Final CTA
 *   9. Shared components (section headers, highlights)
 *  10. Responsive (1024px, 768px, 480px)
 *  11. Reduced motion & print
 */


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LAYOUT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.bb-page-about .bb-main {
    padding-top: 0;
    max-width: 100%;
}

.bb-page-about {
    padding-top: 0;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SHARED — Section headers, highlights
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.about-section-header {
    text-align: center;
    margin-bottom: var(--space-10);
}

.about-section-header h2 {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--bb-charcoal);
    margin: 0;
    position: relative;
    display: inline-block;
    line-height: 1.15;
}

.about-section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--bb-orange);
    border-radius: var(--radius-full);
}

.about-highlight {
    font-weight: 600;
    color: var(--bb-green);
}

.about-highlight-orange {
    font-weight: 600;
    color: var(--bb-orange);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   1. HERO
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bb-green-dark) 0%, var(--bb-green) 100%);
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    filter: grayscale(100%);
    will-change: transform;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 40, 24, 0.3) 0%, rgba(10, 40, 24, 0.6) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--bb-white);
    padding: calc(var(--nav-height) + 60px) var(--page-gutter) 80px;
    max-width: 900px;
    margin: 0 auto;
}

.about-hero-title {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 24px;
    letter-spacing: -0.02em;
}

.about-hero-accent {
    background: linear-gradient(135deg, var(--bb-white) 0%, var(--bb-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-subtitle {
    font-size: var(--text-lg);
    font-weight: 300;
    opacity: 0.9;
    margin: 0 0 40px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 40px;
    background: var(--bb-orange);
    color: var(--bb-white);
    font-size: var(--text-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    box-shadow: 0 10px 30px var(--bb-orange-glow);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.about-hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s var(--ease-out);
}

.about-hero-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 40px var(--bb-orange-glow);
}

.about-hero-btn:hover::before {
    left: 100%;
}

.about-hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    color: var(--bb-white);
    font-size: var(--text-base);
    font-weight: 500;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    background: transparent;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.about-hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.about-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bb-about-bounce 2s infinite;
}

.about-hero-scroll svg {
    width: 30px;
    height: 30px;
    stroke: var(--bb-white);
    opacity: 0.5;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   2. MISSION CARD
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.about-mission {
    padding: var(--space-12) var(--page-gutter);
    background: linear-gradient(135deg, var(--bb-navy) 0%, var(--bb-green) 50%, var(--bb-green-light) 100%);
    position: relative;
    overflow: hidden;
}

.about-mission::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(245, 120, 66, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(42, 122, 72, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.about-mission-inner {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-mission-card {
    background: var(--bb-glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(245, 120, 66, 0.25);
    border-radius: var(--radius-2xl);
    padding: var(--space-12);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08) inset,
        0 30px 90px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(245, 120, 66, 0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out), border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.about-mission-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(245, 120, 66, 0.5);
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.12) inset,
        0 50px 120px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(245, 120, 66, 0.25);
}

.about-mission-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent 0deg,
        rgba(245, 120, 66, 0.06) 60deg,
        transparent 120deg,
        rgba(42, 122, 72, 0.06) 180deg,
        transparent 240deg,
        rgba(245, 120, 66, 0.06) 300deg,
        transparent 360deg
    );
    animation: bb-about-rotate 25s linear infinite;
}

.about-mission-icon {
    font-size: 3rem;
    display: inline-block;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
    animation: bb-about-float 3s ease-in-out infinite;
    transition: transform 0.3s var(--ease-out);
}

.about-mission-card:hover .about-mission-icon {
    transform: scale(1.15) rotate(5deg);
}

.about-mission-text {
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    line-height: 1.8;
    color: var(--bb-white);
    position: relative;
    z-index: 2;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
}

.about-mission-text strong {
    font-weight: 700;
    color: var(--bb-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   3. STORY — Sticky sidebar + chapters
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.about-story {
    padding: var(--space-16) 0;
    background: var(--bb-white);
}

.about-story-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--page-gutter);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: var(--space-12);
    align-items: start;
    padding-top: var(--space-8);
}

/* ── Sticky founder sidebar ── */

.about-founder {
    position: sticky;
    top: calc(var(--nav-height) + 24px);
    height: fit-content;
    align-self: start;
}

.about-founder-card {
    background: var(--bb-off-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.about-founder-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.about-founder-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.about-founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.about-founder-card:hover .about-founder-image img {
    transform: scale(1.04);
}

.about-founder-info {
    padding: 24px 24px 16px;
    text-align: center;
}

.about-founder-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--bb-charcoal);
    margin: 0 0 4px;
}

.about-founder-title {
    color: var(--bb-mid-gray);
    font-size: var(--text-base);
    margin: 0 0 16px;
}

.about-founder-caption {
    font-style: italic;
    color: var(--bb-charcoal);
    font-size: var(--text-sm);
    line-height: 1.6;
    opacity: 0.7;
    margin: 0;
}

.about-founder-creds {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 0 24px 24px;
}

.about-cred-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--bb-white);
    border: 1px solid var(--bb-ash);
    border-radius: var(--radius-full);
    padding: 6px 14px;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--bb-charcoal);
    white-space: nowrap;
}

/* ── Story chapters ── */

.about-story-content {
    padding-bottom: var(--space-12);
}

.about-chapter {
    margin-bottom: var(--space-10);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.about-chapter:hover {
    background: rgba(30, 94, 52, 0.03);
    transform: translateX(8px);
}

.about-chapter:last-child {
    margin-bottom: 0;
}

.about-chapter h3 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--bb-green);
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-chapter-icon {
    width: 44px;
    height: 44px;
    background: var(--bb-orange);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about-chapter p {
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--bb-charcoal);
    opacity: 0.8;
    margin: 0 0 16px;
}

.about-chapter p:last-child {
    margin-bottom: 0;
}

.about-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.about-feature-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--bb-charcoal);
    opacity: 0.8;
}

.about-feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--bb-green);
    font-weight: 700;
}

.about-feature-list li strong {
    color: var(--bb-charcoal);
    opacity: 1;
}

/* ── Quote card ── */

.about-quote-card {
    background: linear-gradient(135deg, var(--bb-green) 0%, var(--bb-green-light) 100%);
    color: var(--bb-white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    margin: 32px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(30, 94, 52, 0.3);
    border: none;
}

.about-quote-card::before {
    content: '❝';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 6rem;
    opacity: 0.1;
    line-height: 1;
    pointer-events: none;
}

.about-quote-card p {
    font-size: var(--text-lg);
    line-height: 1.7;
    font-style: italic;
    position: relative;
    z-index: 2;
    color: var(--bb-white);
    opacity: 1;
    margin: 0;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   4. VALUES — The Blade Boss Code
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.about-values {
    padding: var(--space-16) var(--page-gutter);
    background: var(--bb-off-white);
}

.about-values-inner {
    max-width: var(--content-max);
    margin: 0 auto;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.about-value-card {
    background: var(--bb-white);
    padding: var(--space-8) var(--space-6);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.about-value-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bb-orange) 0%, var(--bb-green) 100%);
    transition: height 0.3s var(--ease-out);
}

.about-value-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 120, 66, 0.04) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
    pointer-events: none;
}

.about-value-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: var(--shadow-xl);
}

.about-value-card:hover::before {
    height: 6px;
}

.about-value-card:hover::after {
    opacity: 1;
}

.about-value-icon {
    width: 60px;
    height: 60px;
    background: var(--bb-off-white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    transition: transform 0.4s var(--ease-out), background 0.4s var(--ease-out);
}

.about-value-card:hover .about-value-icon {
    transform: rotate(-5deg) scale(1.1);
    background: var(--bb-orange);
}

.about-value-card h4 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--bb-charcoal);
    margin: 0 0 12px;
}

.about-value-card p {
    font-size: var(--text-base);
    color: var(--bb-mid-gray);
    line-height: 1.7;
    margin: 0;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   5. GALLERY
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.about-gallery {
    padding: var(--space-16) var(--page-gutter);
    background: var(--bb-white);
}

.about-gallery-inner {
    max-width: var(--content-max);
    margin: 0 auto;
}

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

.about-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    aspect-ratio: 16 / 10;
    margin: 0;
    cursor: pointer;
}

.about-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.about-gallery-item:hover img {
    transform: scale(1.08);
}

.about-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 24px 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: var(--bb-white);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-gallery-item:hover .about-gallery-overlay {
    transform: translateY(0);
}

.about-gallery-overlay strong {
    font-size: var(--text-lg);
    font-weight: 600;
}

.about-gallery-overlay span {
    font-size: var(--text-sm);
    opacity: 0.85;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   6. STATS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.about-stats {
    padding: var(--space-12) var(--page-gutter);
    background: var(--bb-green);
    color: var(--bb-white);
    position: relative;
    overflow: hidden;
}

.about-stats-inner {
    max-width: var(--content-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    text-align: center;
}

.about-stat {
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    transition: transform 0.3s var(--ease-out), background 0.3s var(--ease-out);
    position: relative;
}

.about-stat::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(245, 120, 66, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s var(--ease-out), height 0.5s var(--ease-out);
}

.about-stat:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
}

.about-stat:hover::before {
    width: 180px;
    height: 180px;
}

.about-stat-number {
    font-size: var(--text-4xl);
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--bb-orange);
    display: block;
    margin-bottom: 8px;
    transition: transform 0.3s var(--ease-out);
    position: relative;
    z-index: 1;
}

.about-stat:hover .about-stat-number {
    transform: scale(1.08);
}

.about-stat-label {
    font-size: var(--text-base);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   7. TESTIMONIALS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.about-testimonials {
    padding: var(--space-16) var(--page-gutter);
    background: var(--bb-off-white);
}

.about-testimonials-inner {
    max-width: var(--content-max);
    margin: 0 auto;
}

.about-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.about-testimonial-card {
    background: var(--bb-white);
    padding: var(--space-8) var(--space-6);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: none;
    margin: 0;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.about-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.about-testimonial-stars {
    color: var(--bb-orange);
    font-size: 1.2rem;
    margin-bottom: 16px;
    transition: transform 0.3s var(--ease-out);
}

.about-testimonial-card:hover .about-testimonial-stars {
    transform: scale(1.08);
}

.about-testimonial-card p {
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--bb-charcoal);
    opacity: 0.8;
    margin: 0 0 20px;
    font-style: italic;
}

.about-testimonial-card footer {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.about-testimonial-card footer strong {
    font-size: var(--text-base);
    color: var(--bb-charcoal);
}

.about-testimonial-card footer span {
    font-size: var(--text-sm);
    color: var(--bb-mid-gray);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   8. FINAL CTA
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.about-cta {
    padding: var(--space-16) var(--page-gutter);
    background: linear-gradient(135deg, var(--bb-green-dark) 0%, var(--bb-green) 50%, var(--bb-green-light) 100%);
    color: var(--bb-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta-inner {
    max-width: var(--max-width-sm);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-cta-title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 800;
    margin: 0 0 20px;
    line-height: 1.15;
}

.about-cta-text {
    font-size: var(--text-lg);
    opacity: 0.92;
    margin: 0 0 40px;
    line-height: 1.7;
}

.about-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 40px;
    background: var(--bb-orange);
    color: var(--bb-white);
    font-size: var(--text-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--bb-orange-glow);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.about-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s var(--ease-out);
}

.about-cta-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 40px var(--bb-orange-glow);
}

.about-cta-btn:hover::before {
    left: 100%;
}

.about-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    color: var(--bb-white);
    font-size: var(--text-base);
    font-weight: 500;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    background: transparent;
    cursor: pointer;
    transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.about-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.about-cta-postscript {
    margin: 40px 0 0;
    font-size: var(--text-base);
    opacity: 0.75;
    font-style: italic;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   KEYFRAMES — bb- prefixed
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@keyframes bb-about-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes bb-about-rotate {
    to { transform: rotate(360deg); }
}

@keyframes bb-about-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE — 1024px
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (max-width: 1024px) {
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .about-founder {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE — 768px
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (max-width: 768px) {
    .about-hero-content {
        padding: calc(var(--nav-height-mobile) + 40px) var(--page-gutter) 60px;
    }

    .about-hero-title {
        font-size: var(--text-3xl);
    }

    .about-hero-scroll {
        display: none;
    }

    .about-mission-card {
        padding: var(--space-8);
        border-radius: var(--radius-xl);
    }

    .about-mission-text {
        font-size: var(--text-base);
        line-height: 1.7;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
        gap: var(--space-5);
    }

    .about-value-card {
        padding: var(--space-6) var(--space-5);
    }

    .about-value-card:hover {
        transform: translateY(-5px);
    }

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

    .about-stats-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-5);
    }

    .about-stat {
        padding: var(--space-5);
    }

    .about-testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--space-5);
    }

    .about-chapter {
        padding: var(--space-5);
    }

    .about-chapter:hover {
        transform: none;
    }

    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-cta-btn,
    .about-cta-btn-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .about-hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .about-hero-btn,
    .about-hero-btn-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE — 480px
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (max-width: 480px) {
    .about-hero {
        min-height: 85vh;
    }

    .about-mission {
        padding: var(--space-8) var(--page-gutter);
    }

    .about-story,
    .about-values,
    .about-gallery,
    .about-testimonials {
        padding: var(--space-10) var(--page-gutter);
    }

    .about-section-header {
        margin-bottom: var(--space-8);
    }

    .about-cta {
        padding: var(--space-10) var(--page-gutter);
    }

    .about-founder-creds {
        gap: 6px;
    }

    .about-cred-badge {
        padding: 4px 10px;
        font-size: 0.65rem;
    }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   REDUCED MOTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (prefers-reduced-motion: reduce) {
    .about-hero-bg img {
        will-change: auto;
    }

    .about-mission-card::before,
    .about-mission-icon,
    .about-hero-scroll {
        animation: none;
    }

    .about-gallery-item img,
    .about-founder-image img {
        transition: none;
    }

    .about-gallery-overlay {
        transform: translateY(0);
        opacity: 0;
        transition: opacity 0.2s ease;
    }

    .about-gallery-item:hover .about-gallery-overlay {
        opacity: 1;
    }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRINT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media print {
    .about-hero {
        min-height: auto;
        background: var(--bb-white);
        color: var(--bb-charcoal);
    }

    .about-hero-bg,
    .about-hero-overlay,
    .about-hero-scroll,
    .about-hero-ctas {
        display: none;
    }

    .about-hero-title,
    .about-hero-accent {
        color: var(--bb-charcoal);
        -webkit-text-fill-color: var(--bb-charcoal);
        background: none;
    }

    .about-mission {
        background: var(--bb-off-white);
    }

    .about-mission-card {
        background: var(--bb-white);
        border: 1px solid var(--bb-ash);
        box-shadow: none;
        backdrop-filter: none;
    }

    .about-mission-text {
        color: var(--bb-charcoal);
    }

    .about-stats {
        background: var(--bb-off-white);
        color: var(--bb-charcoal);
    }

    .about-stat-number {
        color: var(--bb-green);
    }

    .about-cta {
        display: none;
    }

    .about-founder {
        position: static;
    }

    .about-gallery-overlay {
        transform: translateY(0);
    }
}
