/**
 * About — Page-specific styles
 * Uses site-base.css for navbar, footer, design tokens.
 * Do NOT override .navbar, .logo-circle, .nav-link — those come from the shared template.
 */
.about-wrapper {
    max-width: 860px;
    margin: 0 auto;
    padding: 1.5rem 1.25rem 4rem;
    min-height: calc(100vh - var(--nav-height));
}
.about-wrapper .container { max-width: 860px; }

/* ── Page header ─────────────────────────────────────────────────── */
.page-header { text-align: center; padding: 3rem 0 2rem; }

.page-header h1 {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: var(--theme-plum);
    margin-bottom: 0.5rem;
}

.page-header p { color: var(--text-muted); font-size: 1rem; max-width: 480px; margin: 0 auto; }

/* ── Content sections ────────────────────────────────────────────── */
.section {
    background: linear-gradient(180deg, var(--theme-surface) 0%, var(--theme-surface-soft) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-card);
    padding: 2.25rem 2.5rem;
    margin-bottom: 1.5rem;
}

.section h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.75rem;
    color: var(--theme-plum);
    margin-bottom: 0.875rem;
}

.section p { color: var(--text-main); line-height: 1.8; margin-bottom: 0.875rem; font-size: 0.95rem; }
.section p:last-child { margin-bottom: 0; }
.section a { color: var(--theme-rose); font-weight: 600; }
.section a:hover { text-decoration: underline; }

/* ── Feature grid ────────────────────────────────────────────────── */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}

.feature-tile {
    background: linear-gradient(180deg, rgba(255, 252, 249, 0.94) 0%, rgba(247, 235, 241, 0.88) 100%);
    border: 1.5px solid var(--border-default);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: 0 16px 36px var(--theme-shadow);
}

.feature-tile-icon { font-size: 1.75rem; line-height: 1; }

.feature-tile h3 { font-size: 0.9rem; font-weight: 800; color: var(--text-dark); margin: 0; }

.feature-tile p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ── Values list ─────────────────────────────────────────────────── */
.values-list { list-style: none; margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.75rem; }

.values-list li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.95rem; color: var(--text-main); line-height: 1.6; }

.values-list .bullet {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(217, 137, 128, 0.12);
    border: 1.5px solid rgba(209, 151, 138, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── CTA band ────────────────────────────────────────────────────── */
.cta-band {
    background: linear-gradient(135deg, rgba(245, 216, 206, 0.88), rgba(236, 224, 234, 0.92));
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    padding: 2.25rem 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.cta-band h2 { font-family: 'Dancing Script', cursive; font-size: 1.9rem; color: var(--theme-plum); margin-bottom: 0.625rem; }
.cta-band p { color: var(--text-muted); margin-bottom: 1.25rem; font-size: 0.95rem; }

.cta-buttons { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.625rem 1.375rem;
    background: linear-gradient(135deg, #d98980, #b96872);
    color: white;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: opacity var(--transition-fast);
}
.btn-primary:hover { opacity: 0.88; }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.625rem 1.375rem;
    background: rgba(255, 251, 248, 0.86);
    border: 1.5px solid var(--border-default);
    color: var(--theme-ink);
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all var(--transition-fast);
}
.btn-secondary:hover { border-color: var(--theme-line-strong); color: var(--theme-rose); }

.support-section p {
    max-width: 540px;
    margin-inline: auto;
    margin-bottom: 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 700px) {
    .section { padding: 1.5rem 1.25rem; }
    .cta-band { padding: 1.5rem 1.25rem; }
}
