/* ===== DEEPAK KESARKAR — PEOPLE'S VOICES LAYOUT ===== */
/* Terracotta (#C2410C) + Sage (#4D7C0F) + Cream (#FFFBEB) */
/* Outfit + Libre Baskerville (warm editorial) */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
    --terra: #C2410C;
    --terra-dark: #9A3412;
    --terra-50: #FFF7ED;
    --terra-100: #FFEDD5;
    --sage: #4D7C0F;
    --sage-dark: #3F6212;
    --sage-50: #F7FEE7;
    --sage-100: #ECFCCB;
    --cream: #FFFBEB;
    --cream-100: #FEF3C7;
    --cream-200: #FDE68A;
    --stone-100: #F5F5F4;
    --stone-200: #E7E5E4;
    --stone-300: #D6D3D1;
    --stone-400: #A8A29E;
    --stone-500: #78716C;
    --stone-600: #57534E;
    --stone-700: #44403C;
    --stone-800: #292524;
    --stone-900: #1C1917;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .04);
    --shadow-md: 0 4px 14px rgba(0, 0, 0, .06);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, .08);
    --tr: .35s cubic-bezier(.4, 0, .2, 1);
    --radius: 12px
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--cream);
    color: var(--stone-600);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

ul,
ol {
    list-style: none
}

h1,
h2,
h3,
h4 {
    font-family: 'Libre Baskerville', serif;
    color: var(--stone-900);
    font-weight: 700
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px
}

/* ===== NAVBAR — warm top bar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--stone-900);
    padding: 0;
    transition: var(--tr)
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15)
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 54px
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px
}

.logo-sq {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: var(--terra);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit';
    font-size: .55rem;
    font-weight: 900;
    color: var(--white)
}

.logo-name {
    font-family: 'Outfit';
    font-size: .82rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.02em
}

.logo-name span {
    color: var(--terra)
}

.nav-links {
    display: flex;
    gap: 0
}

.nav-links a {
    color: rgba(255, 255, 255, .4);
    font-family: 'Outfit';
    font-size: .7rem;
    font-weight: 600;
    padding: 15px 12px;
    transition: var(--tr);
    position: relative
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 2px;
    background: var(--terra);
    border-radius: 2px 2px 0 0
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--white);
    border-radius: 4px;
    transition: var(--tr)
}

/* ===== HERO — warm centered with portrait ===== */
.hero {
    padding: 110px 0 50px;
    background: var(--stone-900);
    position: relative;
    overflow: hidden
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(194, 65, 12, .06), transparent 60%);
    border-radius: 50%
}

.hero-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
    position: relative;
    z-index: 2
}

.hero-text .h-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(194, 65, 12, .1);
    border: 1px solid rgba(194, 65, 12, .15);
    color: var(--terra);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: .5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: 12px
}

.hero-text .h-tag .dot {
    width: 5px;
    height: 5px;
    background: var(--terra);
    border-radius: 50%;
    animation: pulse 2s ease infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .3;
        transform: scale(1.5)
    }
}

.hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 10px
}

.hero h1 em {
    color: var(--terra);
    font-style: italic
}

.hero-sub {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    color: rgba(255, 255, 255, .3);
    font-size: .88rem;
    margin-bottom: 10px;
    line-height: 1.6
}

.hero-desc {
    color: rgba(255, 255, 255, .3);
    font-size: .82rem;
    line-height: 1.8;
    margin-bottom: 20px
}

.hero-btns {
    display: flex;
    gap: 10px
}

.hero-img img {
    width: 100%;
    max-width: 360px;
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
    border: 3px solid rgba(255, 255, 255, .04)
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 8px;
    font-family: 'Outfit';
    font-weight: 700;
    font-size: .74rem;
    cursor: pointer;
    border: none;
    transition: var(--tr)
}

.btn-terra {
    background: var(--terra);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(194, 65, 12, .15)
}

.btn-terra:hover {
    background: var(--terra-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(194, 65, 12, .25)
}

.btn-sage {
    background: var(--sage);
    color: var(--white)
}

.btn-sage:hover {
    background: var(--sage-dark);
    transform: translateY(-1px)
}

.btn-glass {
    background: rgba(255, 255, 255, .04);
    color: rgba(255, 255, 255, .5);
    border: 1px solid rgba(255, 255, 255, .06);
    backdrop-filter: blur(10px)
}

.btn-glass:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff
}

.btn-outline {
    background: transparent;
    color: var(--terra);
    border: 1.5px solid var(--terra)
}

.btn-outline:hover {
    background: var(--terra);
    color: var(--white)
}

.btn-cream {
    background: var(--cream);
    color: var(--stone-900);
    border: 1px solid var(--stone-200)
}

.btn-cream:hover {
    border-color: var(--terra);
    color: var(--terra)
}

/* ===== SECTIONS ===== */
.section {
    padding: 60px 0
}

.sec-cream {
    background: var(--cream)
}

.sec-white {
    background: var(--white)
}

.sec-stone {
    background: var(--stone-100)
}

.sec-dark {
    background: var(--stone-900);
    color: var(--white)
}

.sec-terra {
    background: var(--terra);
    color: var(--white)
}

.sec-eyebrow {
    font-family: 'Outfit';
    font-size: .5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--terra);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px
}

.sec-eyebrow::before {
    content: '';
    width: 16px;
    height: 1.5px;
    background: var(--terra)
}

.sec-title {
    font-family: 'Libre Baskerville';
    font-size: clamp(1.3rem, 2.6vw, 1.7rem);
    margin-bottom: 6px
}

.sec-desc {
    color: var(--stone-500);
    font-size: .82rem;
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 20px
}

/* ===== TESTIMONIAL CARDS (signature element) ===== */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 20px 0
}

.t-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--stone-200);
    transition: var(--tr);
    position: relative
}

.t-card::before {
    content: '"';
    font-family: 'Libre Baskerville', serif;
    font-size: 3.5rem;
    color: var(--terra-50);
    position: absolute;
    top: 8px;
    right: 16px;
    line-height: 1;
    font-weight: 700
}

.t-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--terra)
}

.t-quote {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: .82rem;
    color: var(--stone-700);
    line-height: 1.7;
    margin-bottom: 14px
}

.t-author {
    display: flex;
    align-items: center;
    gap: 10px
}

.t-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit';
    font-size: .6rem;
    font-weight: 800;
    color: var(--white)
}

.t-avatar.c1 {
    background: var(--terra)
}

.t-avatar.c2 {
    background: var(--sage)
}

.t-avatar.c3 {
    background: #6366F1
}

.t-avatar.c4 {
    background: #0891B2
}

.t-avatar.c5 {
    background: #7C3AED
}

.t-avatar.c6 {
    background: #D97706
}

.t-name {
    font-family: 'Outfit';
    font-size: .72rem;
    font-weight: 700;
    color: var(--stone-800)
}

.t-role {
    font-size: .58rem;
    color: var(--stone-400)
}

/* ===== COMMUNITY HIGHLIGHTS ===== */
.comm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 20px 0
}

.cm-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--stone-200);
    transition: var(--tr)
}

.cm-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: transparent
}

.cm-card-img {
    height: 150px;
    overflow: hidden
}

.cm-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s
}

.cm-card:hover .cm-card-img img {
    transform: scale(1.04)
}

.cm-card-body {
    padding: 16px
}

.cm-tag {
    font-family: 'Outfit';
    font-size: .46rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--sage);
    margin-bottom: 4px
}

.cm-card-body h3 {
    font-family: 'Libre Baskerville';
    font-size: .88rem;
    margin-bottom: 4px;
    color: var(--stone-900)
}

.cm-card-body p {
    font-size: .72rem;
    color: var(--stone-500);
    line-height: 1.6
}

/* ===== LEADER'S MESSAGE (centered quote) ===== */
.lm-box {
    background: var(--stone-900);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 20px 0
}

.lm-box::before {
    content: '"';
    font-family: 'Libre Baskerville', serif;
    font-size: 8rem;
    color: rgba(194, 65, 12, .06);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1
}

.lm-box blockquote {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    color: rgba(255, 255, 255, .7);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto 16px;
    position: relative;
    z-index: 2
}

.lm-box .lm-author {
    font-family: 'Outfit';
    font-size: .72rem;
    font-weight: 700;
    color: var(--terra)
}

.lm-box .lm-title {
    font-size: .58rem;
    color: rgba(255, 255, 255, .25)
}

/* ===== EVENT CARDS ===== */
.ev-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 20px 0
}

.ev-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    gap: 14px;
    border: 1px solid var(--stone-200);
    transition: var(--tr)
}

.ev-card:hover {
    border-color: var(--terra);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px)
}

.ev-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    padding: 8px;
    border-radius: 8px;
    background: var(--terra-50)
}

.ev-date .ed {
    font-family: 'Outfit';
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--terra);
    line-height: 1
}

.ev-date .em {
    font-family: 'Outfit';
    font-size: .46rem;
    font-weight: 700;
    color: var(--stone-400);
    text-transform: uppercase;
    letter-spacing: .08em
}

.ev-card h3 {
    font-family: 'Outfit';
    font-size: .82rem;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--stone-900)
}

.ev-card p {
    font-size: .72rem;
    color: var(--stone-500);
    line-height: 1.6
}

.ev-card .ev-loc {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .58rem;
    color: var(--sage);
    font-weight: 700;
    margin-top: 4px
}

/* ===== DUO ===== */
.duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
    margin: 24px 0
}

.duo.flip {
    direction: rtl
}

.duo.flip>* {
    direction: ltr
}

.duo-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg)
}

.duo-img img {
    width: 100%;
    height: 340px;
    object-fit: cover
}

/* ===== DATA CARDS ===== */
.data-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 20px 0
}

.d-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 22px;
    border: 1px solid var(--stone-200);
    transition: var(--tr)
}

.d-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--terra)
}

.d-card .ico {
    font-size: 1.1rem;
    margin-bottom: 8px
}

.d-card h3 {
    font-family: 'Outfit';
    font-size: .8rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--stone-900)
}

.d-card p {
    font-size: .74rem;
    color: var(--stone-500);
    line-height: 1.65
}

/* IMPACT STORY (larger testimonial) */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 20px 0
}

.i-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--stone-200);
    transition: var(--tr);
    position: relative;
    overflow: hidden
}

.i-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--terra)
}

.i-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px)
}

.i-card .i-tag {
    font-family: 'Outfit';
    font-size: .46rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--sage);
    margin-bottom: 6px
}

.i-card h3 {
    font-family: 'Libre Baskerville';
    font-size: .88rem;
    margin-bottom: 6px;
    color: var(--stone-900)
}

.i-card p {
    font-size: .74rem;
    color: var(--stone-500);
    line-height: 1.7;
    margin-bottom: 10px
}

.i-card .i-author {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid var(--stone-200)
}

/* CHIP BAR */
.chip-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 10px
}

.chip {
    background: var(--terra-50);
    color: var(--terra);
    padding: 3px 10px;
    border-radius: 6px;
    font-family: 'Outfit';
    font-size: .62rem;
    font-weight: 700
}

.chip.sage {
    background: var(--sage-50);
    color: var(--sage)
}

/* PAGE HEADER */
.pg-header {
    padding: 110px 0 40px;
    background: var(--stone-900);
    position: relative;
    overflow: hidden
}

.pg-header::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(194, 65, 12, .04), transparent 70%);
    border-radius: 50%
}

.pg-header .container {
    position: relative;
    z-index: 2
}

.pg-header h1 {
    font-size: clamp(1.5rem, 3.2vw, 2.2rem);
    color: var(--white);
    margin-bottom: 6px
}

.pg-header h1 span {
    color: var(--terra);
    font-style: italic
}

.pg-header p {
    color: rgba(255, 255, 255, .3);
    font-size: .82rem
}

.breadcrumb {
    display: flex;
    gap: 6px;
    margin-top: 8px;
    font-size: .64rem
}

.breadcrumb a {
    color: var(--terra);
    font-weight: 600
}

.breadcrumb em {
    color: rgba(255, 255, 255, .12);
    font-style: normal
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 20px 0
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.fg {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.fg label {
    font-family: 'Outfit';
    font-size: .52rem;
    font-weight: 700;
    color: var(--stone-400);
    text-transform: uppercase;
    letter-spacing: .1em
}

.fg input,
.fg textarea {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1.5px solid var(--stone-200);
    background: var(--white);
    color: var(--stone-900);
    font-family: 'Outfit';
    font-size: .82rem;
    transition: var(--tr);
    outline: none
}

.fg input:focus,
.fg textarea:focus {
    border-color: var(--terra);
    box-shadow: 0 0 0 3px rgba(194, 65, 12, .04)
}

.fg textarea {
    min-height: 100px;
    resize: vertical
}

.c-sidebar {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.c-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid var(--stone-200)
}

.c-ico {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--terra-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    flex-shrink: 0
}

.c-card h4 {
    font-family: 'Outfit';
    font-size: .74rem;
    color: var(--stone-900);
    font-weight: 700;
    margin-bottom: 1px
}

.c-card p {
    color: var(--stone-500);
    font-size: .68rem;
    line-height: 1.5
}

/* ===== FOOTER ===== */
.footer {
    background: var(--stone-900);
    padding: 40px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 24px;
    padding-bottom: 24px
}

.footer-about h3 {
    color: var(--white);
    font-family: 'Libre Baskerville';
    font-size: .92rem;
    margin-bottom: 6px
}

.footer-about p {
    color: var(--stone-500);
    font-size: .72rem;
    line-height: 1.7
}

.footer-links h4 {
    color: var(--white);
    font-family: 'Outfit';
    font-size: .74rem;
    font-weight: 700;
    margin-bottom: 8px
}

.footer-links a {
    display: block;
    color: var(--stone-500);
    font-size: .68rem;
    padding: 3px 0;
    transition: var(--tr)
}

.footer-links a:hover {
    color: var(--terra)
}

.footer-contact h4 {
    color: var(--white);
    font-family: 'Outfit';
    font-size: .74rem;
    font-weight: 700;
    margin-bottom: 8px
}

.footer-contact p {
    color: var(--stone-500);
    font-size: .68rem;
    line-height: 1.7
}

.footer-bar {
    border-top: 1px solid rgba(255, 255, 255, .04);
    padding: 12px 0
}

.footer-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px
}

.footer-bar-left {
    color: var(--stone-600);
    font-size: .64rem
}

.footer-bar-right {
    font-size: .64rem;
    color: var(--stone-600)
}

.footer-bar-right a {
    color: var(--terra);
    font-weight: 700
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 8px 0 0;
    margin-top: 4px
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .04);
    color: var(--stone-500);
    transition: var(--tr)
}

.footer-social a:hover {
    background: var(--terra);
    color: var(--white);
    transform: translateY(-2px)
}

.footer-social a svg {
    width: 12px;
    height: 12px;
    fill: currentColor
}

/* ANIMATIONS */
.rv {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .5s ease, transform .5s ease
}

.rv.on {
    opacity: 1;
    transform: translateY(0)
}

.rvl {
    opacity: 0;
    transform: translateX(-18px);
    transition: opacity .5s ease, transform .5s ease
}

.rvl.on {
    opacity: 1;
    transform: translateX(0)
}

.rvr {
    opacity: 0;
    transform: translateX(18px);
    transition: opacity .5s ease, transform .5s ease
}

.rvr.on {
    opacity: 1;
    transform: translateX(0)
}

/* RESPONSIVE */
@media(max-width:1024px) {

    .hero-row,
    .duo,
    .duo.flip,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .duo.flip {
        direction: ltr
    }

    .testi-grid,
    .comm-grid,
    .data-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 240px;
        height: 100vh;
        background: var(--stone-900);
        flex-direction: column;
        padding: 60px 24px;
        gap: 0;
        transition: var(--tr);
        box-shadow: -4px 0 20px rgba(0, 0, 0, .2)
    }

    .nav-links.active {
        right: 0
    }

    .nav-toggle {
        display: flex
    }

    .nav-links a {
        padding: 10px 0
    }

    .nav-links a.active::after {
        display: none
    }

    .testi-grid,
    .comm-grid,
    .data-grid,
    .ev-grid,
    .impact-grid {
        grid-template-columns: 1fr
    }

    .footer-bar .container {
        flex-direction: column;
        text-align: center
    }
}