/* =============================================
   ABOUT PAGE — SITE-MATCHED THEME
   Purple (#8492c3) + Teal (#8ebcb7) + Light bg
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,700;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ---- Base ---- */
.about-body {
    background: #eae9e6;
    color: #111;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* ---- HERO ---- */
.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 130px 24px 90px;
    overflow: hidden;
    background: linear-gradient(160deg, #f6f5f3 0%, #eae9e6 50%, #e4e2f0 100%);
}

/* Soft animated grain */
.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
    animation: grainShift 9s steps(2) infinite;
}

@keyframes grainShift {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-3px, 2px);
    }

    50% {
        transform: translate(2px, -3px);
    }

    75% {
        transform: translate(-1px, -2px);
    }

    100% {
        transform: translate(0, 0);
    }
}

/* Glow orbs using site palette */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: orbFloat 14s ease-in-out infinite;
}

.orb-1 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(132, 146, 195, 0.35), transparent 70%);
    top: -100px;
    left: -180px;
    animation-delay: 0s;
}

.orb-2 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(142, 188, 183, 0.28), transparent 70%);
    bottom: -60px;
    right: -100px;
    animation-delay: -7s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(176, 138, 87, 0.15), transparent 70%);
    top: 40%;
    left: 55%;
    animation-delay: -3s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(25px, -35px) scale(1.07);
    }
}

.hero-eyebrow {
    position: relative;
    z-index: 1;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: #8492c3;
    margin-bottom: 26px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-eyebrow.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-headline {
    position: relative;
    z-index: 1;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: #111;
    max-width: 820px;
    margin: 0 auto 30px;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s ease 0.15s, transform 0.9s ease 0.15s;
}

.hero-headline.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-headline em {
    font-style: italic;
    color: #8492c3;
    /* Purple accent */
}

/* Typing cursor — purple */
.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 0.82em;
    background: #8492c3;
    margin-left: 3px;
    vertical-align: middle;
    border-radius: 2px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-sub {
    position: relative;
    z-index: 1;
    font-size: 16px;
    font-weight: 400;
    color: #777;
    letter-spacing: 0.04em;
    max-width: 480px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.8s ease 0.38s, transform 0.8s ease 0.38s;
}

.hero-sub.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll indicator */
.scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 1s ease 1.2s;
}

.scroll-hint.visible {
    opacity: 1;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, #8492c3);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ---- SECTION WRAPPER ---- */
.about-section {
    padding: 96px 24px;
    max-width: 860px;
    margin: 0 auto;
}

/* ---- DIVIDER / RULE ---- */
.about-divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #c5c8d8, transparent);
    margin: 0 auto;
}

.thin-rule {
    border: none;
    border-top: 1px solid #dddce0;
    margin: 0;
}

/* ---- SCROLL-REVEAL ---- */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.22s;
}

.reveal-delay-3 {
    transition-delay: 0.36s;
}

.reveal-delay-4 {
    transition-delay: 0.5s;
}

/* ---- SECTION LABELS ---- */
.section-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: #8ebcb7;
    /* Teal */
    margin-bottom: 18px;
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: #111;
    line-height: 1.15;
    margin-bottom: 26px;
}

.section-heading em {
    font-style: italic;
    color: #8492c3;
    /* Purple */
}

.section-body {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.85;
    color: #555;
    margin-bottom: 18px;
}

/* ---- BRUSH TITLE (matching site's title-brush) ---- */
.about-brush-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 500;
    font-style: italic;
    background-color: #8492c3;
    color: #111;
    padding: 10px 50px;
    clip-path: polygon(2% 10%, 8% 5%, 15% 12%, 25% 4%, 35% 15%, 45% 6%, 55% 12%, 65% 5%, 75% 14%, 85% 6%, 95% 15%, 98% 8%,
            100% 20%, 97% 35%, 100% 50%, 96% 65%, 100% 80%, 98% 95%,
            92% 88%, 85% 95%, 75% 85%, 65% 96%, 55% 88%, 45% 95%, 35% 85%, 25% 96%, 15% 85%, 8% 95%, 2% 90%, 0% 95%,
            5% 80%, 0% 65%, 4% 50%, 0% 35%, 3% 20%, 0% 5%);
    display: inline-block;
    margin-bottom: 40px;
}

/* ---- MANIFESTO BLOCK ---- */
.manifesto-block {
    border-left: 3px solid #8492c3;
    padding: 36px 0 36px 44px;
    margin: 56px 0;
    background: linear-gradient(to right, rgba(132, 146, 195, 0.06), transparent);
    border-radius: 0 12px 12px 0;
    position: relative;
}

.manifesto-block::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 110px;
    color: rgba(132, 146, 195, 0.12);
    position: absolute;
    top: -18px;
    left: 6px;
    line-height: 1;
}

.manifesto-line {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 3.2vw, 2rem);
    font-weight: 500;
    color: #222;
    line-height: 1.55;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.manifesto-line span {
    color: #8492c3;
}

/* ---- PILLARS GRID ---- */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 44px;
}

@media (max-width: 560px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

.pillar-card {
    background: #fff;
    border: 1px solid #e8e7ec;
    border-radius: 16px;
    padding: 28px 24px;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.pillar-card:hover {
    border-color: #8492c3;
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(132, 146, 195, 0.14);
}

.pillar-icon {
    font-size: 24px;
    margin-bottom: 14px;
    display: block;
}

.pillar-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
}

.pillar-desc {
    font-size: 13px;
    font-weight: 400;
    color: #888;
    line-height: 1.65;
}

/* ---- FOR WHO SECTION ---- */
.for-who {
    background: #f0eff5;
    border-top: 1px solid #e0dfea;
    border-bottom: 1px solid #e0dfea;
    padding: 96px 24px;
    text-align: center;
}

.for-who-inner {
    max-width: 680px;
    margin: 0 auto;
}

.for-who .section-heading {
    text-align: center;
}

.traits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 34px;
}

.trait-chip {
    background: #fff;
    border: 1.5px solid #d0cedf;
    border-radius: 100px;
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    cursor: default;
}

.trait-chip:hover {
    background: #8492c3;
    border-color: #8492c3;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(132, 146, 195, 0.3);
}

/* ---- TEAL ACCENT BAND ---- */
.teal-band {
    background: #8ebcb7;
    padding: 56px 24px;
    text-align: center;
}

.teal-band-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    font-weight: 500;
    font-style: italic;
    color: #111;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.5;
}

.teal-band-text strong {
    font-style: normal;
    font-weight: 700;
}

/* ---- CLOSING STATEMENT ---- */
.closing-section {
    text-align: center;
    padding: 120px 24px;
    max-width: 700px;
    margin: 0 auto;
}

.closing-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #111;
    line-height: 1.2;
    margin-bottom: 22px;
}

.closing-headline em {
    color: #8492c3;
    font-style: italic;
}

.closing-sub {
    font-size: 14px;
    font-weight: 500;
    color: #8ebcb7;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 640px) {
    .about-section {
        padding: 64px 20px;
    }

    .manifesto-block {
        padding: 28px 0 28px 26px;
    }

    .section-body {
        font-size: 15px;
    }

    .about-brush-title {
        font-size: 26px;
        padding: 8px 30px;
    }
}