/* ── Hero Section ───────────────────────────────────────── */
.about-hero {
    padding: 90px 0 80px;
    background: linear-gradient(160deg, #fff 0%, #fef2f2 60%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.about-hero-blob {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(232,72,85,.05);
    pointer-events: none;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-light);
    color: var(--brand);
    font-size: .78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
    letter-spacing: .5px;
}

.about-hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--brand);
    border-radius: 50%;
    display: inline-block;
}

.about-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.5px;
    color: var(--ink);
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-title-accent { color: var(--brand); }

.about-hero-subtitle {
    font-size: 1.05rem;
    color: var(--ink-3);
    line-height: 1.8;
    max-width: 580px;
    margin: 0 auto 36px;
}

/* ── Stats Bar ──────────────────────────────────────────── */
.about-stats-bar {
    background: var(--ink);
    padding: 40px 0;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.about-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.about-stat-label {
    font-size: .78rem;
    color: rgba(255,255,255,.4);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: .8px;
}

/* ── Mission Grid ───────────────────────────────────────── */
.about-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-mission-text {
    color: var(--ink-3);
    line-height: 1.85;
    font-size: .975rem;
    margin-bottom: 20px;
}

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

.about-section-title { margin-bottom: 20px; }

.about-features-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-mini-card {
    padding: 24px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.about-mini-card-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.about-mini-card-title {
    font-size: .9rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}

.about-mini-card-desc {
    font-size: .78rem;
    color: var(--ink-4);
    line-height: 1.5;
}

/* ── Features Slider Section ────────────────────────────── */
.about-features-section {
    background: var(--ink);
    overflow: hidden;
}

.about-features-header { margin-bottom: 48px; }

.about-features-eyebrow {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 10px;
}

.about-features-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -.3px;
}

.about-feature-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    height: 100%;
}

.about-feature-card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.about-feature-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.about-feature-card-desc {
    font-size: .85rem;
    color: rgba(255,255,255,.55);
    line-height: 1.7;
    margin: 0;
}

/* ── Custom Slider ──────────────────────────────────────── */
.cs-slider-wrap {
    overflow: hidden;
    border-radius: var(--radius);
    position: relative;
}

.cs-track {
    display: flex;
    gap: 20px;
    transition: transform .45s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

.cs-slide {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 0;
}

.cs-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.cs-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
    flex-shrink: 0;
}

.cs-btn:hover { background: rgba(255,255,255,.2); }

.cs-btn-dark {
    background: var(--ink);
    border-color: var(--ink);
}

.cs-btn-dark:hover { background: #1f2937; }

.cs-dots { display: flex; gap: 6px; align-items: center; }

.cs-dot {
    width: 8px;
    height: 8px;
    border-radius: 20px;
    background: rgba(255,255,255,.3);
    border: none;
    cursor: pointer;
    transition: all .3s;
    padding: 0;
}

.cs-dot.active {
    width: 24px;
    background: var(--brand);
}

.cs-dot-dark { background: var(--border); }
.cs-dot-dark.active { background: var(--brand); }

/* ── Reviews Section ────────────────────────────────────── */
.about-reviews-section {
    background: var(--surface-2);
    border-top: 1px solid var(--border);
}

.about-reviews-header { margin-bottom: 48px; }

.about-reviews-subtitle {
    margin: 12px auto 0;
}

.review-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
    height: 100%;
}

.review-quote {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    color: var(--brand);
    opacity: .15;
    line-height: .8;
    position: absolute;
    top: 16px;
    right: 20px;
}

.review-stars {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.review-text {
    font-size: .9rem;
    color: var(--ink-2);
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic;
}

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

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--brand-light);
    flex-shrink: 0;
}

.review-avatar-letter {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .95rem;
    flex-shrink: 0;
}

.review-author-name {
    font-size: .875rem;
    font-weight: 700;
    color: var(--ink);
}

.review-author-location {
    font-size: .75rem;
    color: var(--ink-4);
}

.review-footer-logo {
    margin-left: auto;
}

.review-footer-logo img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    object-fit: cover;
    opacity: .5;
}

/* ── CTA Section ────────────────────────────────────────── */
.about-cta-section {
    background: var(--brand);
    padding: 72px 0;
}

.about-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -.3px;
}

.about-cta-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,.8);
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta-store-link {
    padding: 6px 10px;
    border-radius: 8px;
    display: inline-block;
}

.about-cta-store-img {
    height: 50px;
    border-radius: 8px;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
    .cs-slide { flex: 0 0 calc(50% - 10px); }
}

@media (max-width: 600px) {
    .cs-slide             { flex: 0 0 100%; }
    .about-mission-grid   { grid-template-columns: 1fr; gap: 40px; }
    .about-features-mini  { grid-template-columns: 1fr 1fr; }
    .about-stats-grid     { grid-template-columns: repeat(2, 1fr); }
}