/* ==========================================================================
   ABOUT PAGE STYLES
   ========================================================================== */

.about-page-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    margin-top: 40px;
}

.about-text-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text-panel p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--ink-soft);
    margin-bottom: 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.about-poly {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.about-poly img {
    aspect-ratio: 1;
    object-fit: cover;
    flex-grow: 1;
}

/* Rooh integration for about page */
.about-rooh-wrapper {
    text-align: center;
    margin-top: 30px;
}

.about-rooh-img {
    width: 100%;
    max-width: 220px;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
}

.about-rooh-caption {
    font-family: var(--font-hand);
    color: var(--ink-faded);
    margin-top: 10px;
}
@media (max-width: 768px) {
    .about-page-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .about-text-panel {
        order: 1;
    }

    .about-grid {
        order: 2;
    }

    .about-rooh-wrapper {
        display: none;
    }
}

@media (max-width: 480px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .polaroid {
        width: 80%;
        margin: 0 auto;
    }
}
/* ── Ganesh Blessing ─────────────────────── */
.about-blessing {
    max-width: 700px;
    width: 100%;
    margin: -10px auto 0;
    padding: 0 16px;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    box-sizing: border-box;
}
.about-blessing-glyph {
    display: block;
    font-family: var(--font-hand);
    font-size: 1.5rem;
    color: var(--green-pale, #a9c79c);
    opacity: .55;
    margin-bottom: 2px;
    line-height: 1;
}
.about-blessing-sanskrit {
    font-family: var(--font-hand);
    font-size: 1.2rem;
    color: var(--green);
    margin-bottom: 6px;
    letter-spacing: 2px;
}
.about-blessing-transliteration {
    font-size: .78rem;
    color: var(--ink-faded);
    font-style: italic;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.about-blessing-divider {
    display: block;
    width: 36px;
    height: 1px;
    margin: 0 auto 12px;
    background: linear-gradient(to right, transparent, rgba(62,107,39,.4), transparent);
}
.about-blessing-note {
    font-size: clamp(0.6rem, 2.4vw, .92rem);
    color: var(--ink-soft);
    line-height: 1.55;
    margin: 0;
    white-space: normal;
    text-align: center !important;
    display: block;
}

/* ── Colors Grid ─────────────────────────── */
.about-colors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}
.about-color-card {
    padding: 28px 24px;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 4px;
    background: rgba(250,246,240,.6);
}
.about-color-swatch {
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-bottom: 16px;
}
.about-color-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    border: none;
}
.about-color-card p {
    font-size: .88rem;
    color: var(--ink-faded);
    margin: 0;
    line-height: 1.65;
}

/* ── Mission & Vision ────────────────────── */
.about-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 20px;
}

/* ── Core Values ─────────────────────────── */
.about-values-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: unset; /* remove the old 600px cap */
    order: 1;
}


.about-value-item {
    font-size: 1.05rem;
    color: var(--ink-soft);
    padding: 16px 20px;
    border-left: 3px solid var(--green-pale);
    background: rgba(62,107,39,.03);
    border-radius: 0 4px 4px 0;
}

/* ── Differentiators: Notice Board ───────── */
.about-diff-board {
    position: relative;
    margin-top: 20px;
    padding: 46px 40px 54px;
    border-radius: 6px;
    background:
        repeating-radial-gradient(circle at 20% 30%, rgba(255,255,255,.05) 0, rgba(255,255,255,.05) 1px, transparent 1px, transparent 14px),
        radial-gradient(circle at 50% 50%, #b98a5e, #a97b52 70%);
    box-shadow:
        inset 0 0 0 14px #6b4a30,
        inset 0 0 0 18px #5a3c26,
        inset 0 2px 30px rgba(0,0,0,.45),
        0 18px 40px rgba(0,0,0,.18);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px 28px;
}
.about-diff-board::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 3px;
    background-image:
        radial-gradient(rgba(0,0,0,.12) 1px, transparent 1.4px),
        radial-gradient(rgba(255,255,255,.06) 1px, transparent 1.4px);
    background-size: 9px 9px, 13px 13px;
    background-position: 0 0, 4px 6px;
    pointer-events: none;
    opacity: .5;
}

.about-sticky {
    position: relative;
    padding: 30px 22px 24px;
    min-height: 200px;
    box-shadow: 3px 6px 14px rgba(0,0,0,.25), 0 1px 0 rgba(255,255,255,.4) inset;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.about-sticky:hover {
    transform: translateY(-4px) rotate(0deg) !important;
    box-shadow: 5px 12px 22px rgba(0,0,0,.3), 0 1px 0 rgba(255,255,255,.4) inset;
    z-index: 2;
}
.about-sticky--r1 { transform: rotate(-3deg); }
.about-sticky--r2 { transform: rotate(2.5deg); }

.about-sticky-pin {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #ff9d9d, #c23b3b 65%, #7a1f1f);
    box-shadow: 0 3px 5px rgba(0,0,0,.4);
}

.about-sticky-index {
    display: block;
    font-family: var(--font-hand);
    font-size: 1.5rem;
    color: rgba(0,0,0,.32);
    margin-bottom: 6px;
    line-height: 1;
}

.about-sticky h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    border: none;
    color: var(--ink, #2b2620);
}

.about-sticky p {
    font-size: .87rem;
    line-height: 1.65;
    margin: 0;
    color: rgba(0,0,0,.62);
}

.about-sticky--yellow   { background: #fdefa6; }
.about-sticky--pink     { background: #f9c9d8; }
.about-sticky--blue     { background: #bfe3f0; }
.about-sticky--green    { background: #cbe8b5; }
.about-sticky--orange   { background: #fcd0a1; }
.about-sticky--lavender { background: #dcd0f0; }

@media (max-width: 900px) {
    .about-diff-board {
        grid-template-columns: 1fr 1fr;
        padding: 36px 24px 44px;
    }
}

@media (max-width: 640px) {
    .about-diff-board {
        grid-template-columns: 1fr;
        padding: 32px 20px 40px;
        gap: 40px 0;
    }
    .about-sticky--r1, .about-sticky--r2 { transform: rotate(-1.5deg); }
}

/* ── Note ────────────────────────────────── */
.about-note {
    max-width: 640px;
    margin: 0 auto;
}

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

@media (max-width: 768px) {
    .about-page-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .about-mv-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-colors-grid {
        grid-template-columns: 1fr;
    }
    .about-values-layout {
        flex-direction: column;
    }
    .about-rooh3-wrapper {
        width: 240px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .polaroid {
        width: 80%;
        margin: 0 auto;
    }
}
.about-mv-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--ink-soft);
    margin-bottom: 16px;
}

.about-value-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.05rem;
    color: var(--ink-soft);
    padding: 20px 24px;
    border-left: 3px solid var(--green-pale);
    background: rgba(62,107,39,.03);
    border-radius: 0 4px 4px 0;
}

.about-rooh3-wrapper {
    flex-shrink: 0;
    width: 320px;      /* bump this up from 260px */
    margin: 0;         /* remove the old auto margin */
    text-align: center;
    order: 2;
}

.about-rooh3-img {
    max-width: 280px;
    margin: 0 auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
}
.about-value-icon {
    display: block;        /* inline SVGs ignore width/height */
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    flex-shrink: 0;
    color: var(--green);
}
.about-values-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-top: 24px;
}