/* ===== Design tokens ===== */
:root {
    --maroon: #6d1f2c;
    --maroon-dark: #4e131d;
    --saffron: #e08a1e;
    --saffron-light: #f4a935;
    --cream: #faf5ee;
    --cream-2: #f3ebdf;
    --ink: #241b17;
    --ink-soft: #5b514b;
    --line: #e6dccd;
    --white: #ffffff;
    --shadow-sm: 0 2px 10px rgba(78, 19, 29, .06);
    --shadow-md: 0 14px 40px rgba(78, 19, 29, .12);
    --radius: 18px;
    --maxw: 1160px;
    --sans: "Mukta", system-ui, "Segoe UI", sans-serif;
    --serif: "Tiro Devanagari Marathi", Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ===== Navigation ===== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(250, 245, 238, .82);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, box-shadow .3s, background .3s;
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.05rem; }
.brand-mark {
    display: grid; place-items: center;
    width: 38px; height: 38px; border-radius: 11px;
    background: linear-gradient(145deg, var(--maroon), var(--maroon-dark));
    color: var(--saffron-light); font-family: var(--serif); font-size: 1.4rem;
    box-shadow: var(--shadow-sm);
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-weight: 500; color: var(--ink-soft); position: relative; transition: color .2s; }
.nav-links a:not(.nav-cta)::after {
    content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
    background: var(--saffron); transition: width .25s;
}
.nav-links a:not(.nav-cta):hover { color: var(--maroon); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
    background: var(--maroon); color: #fff !important; padding: 9px 20px;
    border-radius: 999px; font-weight: 600; transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--maroon-dark); transform: translateY(-1px); }
.lang-toggle {
    background: transparent; border: 1.5px solid var(--saffron); color: var(--maroon);
    font-family: var(--sans); font-weight: 600; font-size: .9rem; cursor: pointer;
    padding: 7px 15px; border-radius: 999px; transition: background .2s, color .2s, transform .2s;
}
.lang-toggle:hover { background: var(--saffron); color: #fff; transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--maroon); border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== Hero ===== */
.hero { position: relative; padding: 132px 0 90px; overflow: hidden; }
.hero-bg-accent {
    position: absolute; top: -180px; right: -160px; width: 620px; height: 620px;
    background: radial-gradient(circle, rgba(224,138,30,.16), transparent 62%);
    pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.hero-photo-frame {
    position: relative; border-radius: 24px; overflow: hidden;
    background: #111; box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
    max-width: 380px; margin: 0 auto;
}
.hero-photo-frame img { width: 100%; height: auto; }
.hero-photo-badge {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 18px 16px 20px; text-align: center; color: #fff;
    background: linear-gradient(to top, rgba(78,19,29,.96), rgba(78,19,29,.72) 55%, transparent);
    display: flex; flex-direction: column; gap: 2px;
}
.badge-top { font-family: var(--serif); font-size: 1rem; color: var(--saffron-light); letter-spacing: .5px; }
.badge-bottom { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; }

.hero-eyebrow {
    text-transform: uppercase; letter-spacing: 3px; font-size: .78rem;
    font-weight: 600; color: var(--saffron); margin-bottom: 14px;
}
.hero-title {
    font-family: var(--serif); font-weight: 700; line-height: 1.1;
    font-size: clamp(2.4rem, 5.4vw, 4rem); color: var(--maroon); margin-bottom: 22px;
}
.hero-roles { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 22px; }
.hero-roles li {
    position: relative; padding-left: 22px; font-weight: 500;
    font-size: 1.02rem; color: var(--ink);
}
.hero-roles li::before {
    content: ""; position: absolute; left: 0; top: 11px; width: 8px; height: 8px;
    border-radius: 50%; background: var(--saffron);
}
.hero-desc { color: var(--ink-soft); font-size: 1.06rem; max-width: 560px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 13px 28px; border-radius: 999px; font-weight: 600; font-size: 1rem;
    transition: transform .2s, box-shadow .2s, background .2s; cursor: pointer;
}
.btn svg { width: 20px; height: 20px; fill: currentColor; }
.btn-primary { background: var(--maroon); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--maroon-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--maroon); border: 1.6px solid var(--maroon); }
.btn-ghost:hover { background: var(--maroon); color: #fff; transform: translateY(-2px); }
.btn-whatsapp { background: #25d366; color: #fff; box-shadow: 0 8px 24px rgba(37,211,102,.32); }
.btn-whatsapp:hover { background: #1eb857; transform: translateY(-2px); }

/* ===== Sections ===== */
.section { padding: 92px 0; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-tag {
    display: inline-block; text-transform: uppercase; letter-spacing: 2.5px;
    font-size: .74rem; font-weight: 700; color: var(--saffron);
    background: rgba(224,138,30,.1); padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.section-tag.light { color: var(--saffron-light); background: rgba(255,255,255,.14); }
.section-head h2, .edu-text h2, .contact-text h2 {
    font-family: var(--serif); font-weight: 700; color: var(--maroon);
    font-size: clamp(1.7rem, 3.6vw, 2.5rem); line-height: 1.25; margin-bottom: 14px;
}
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }

/* ===== Cards (Janseva) ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 30px 26px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
    transition: transform .28s, box-shadow .28s;
}
.card::before {
    content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
    background: linear-gradient(var(--saffron), var(--maroon)); transform: scaleY(0);
    transform-origin: top; transition: transform .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card:hover::before { transform: scaleY(1); }
.card-label {
    display: inline-block; font-size: .76rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--saffron); margin-bottom: 12px;
}
.card h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--maroon); margin-bottom: 10px; }
.card p { color: var(--ink-soft); }

/* ===== Education ===== */
.section-edu { background: var(--cream-2); }
.edu-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 54px; align-items: center; }
.edu-text p { color: var(--ink-soft); font-size: 1.1rem; margin-top: 10px; }
.edu-quote {
    background: linear-gradient(150deg, var(--maroon), var(--maroon-dark));
    color: #fff; border-radius: 24px; padding: 46px 40px; position: relative;
    box-shadow: var(--shadow-md); overflow: hidden;
}
.edu-quote::after {
    content: ""; position: absolute; right: -50px; bottom: -50px; width: 200px; height: 200px;
    border-radius: 50%; background: rgba(224,138,30,.18);
}
.quote-mark { font-family: var(--serif); font-size: 4.5rem; line-height: .6; color: var(--saffron-light); display: block; }
.edu-quote blockquote {
    font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 1.9rem);
    line-height: 1.4; margin: 10px 0 18px; position: relative; z-index: 1;
}
.edu-quote figcaption { color: var(--saffron-light); font-weight: 600; letter-spacing: 1px; }

/* ===== Focus grid ===== */
.focus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.focus-item {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 36px 28px; transition: transform .28s, box-shadow .28s;
}
.focus-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.focus-num {
    font-family: var(--serif); font-size: 2.6rem; font-weight: 700;
    color: var(--cream-2); -webkit-text-stroke: 1.5px var(--saffron); display: block; margin-bottom: 12px;
    line-height: 1;
}
.focus-item h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--maroon); margin-bottom: 10px; }
.focus-item p { color: var(--ink-soft); }

/* ===== Contact ===== */
.section-contact { background: linear-gradient(160deg, var(--maroon), var(--maroon-dark)); color: #fff; }
.section-contact h2 { color: #fff; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.contact-loc { color: var(--saffron-light); font-weight: 500; margin: 4px 0 26px; letter-spacing: .5px; }
.contact-details { font-style: normal; display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.contact-row {
    display: flex; align-items: flex-start; gap: 14px; padding: 14px 16px; border-radius: 14px;
    background: rgba(255,255,255,.07); transition: background .2s, transform .2s;
}
.contact-row:hover { background: rgba(255,255,255,.14); transform: translateX(4px); }
.contact-row svg { width: 22px; height: 22px; fill: var(--saffron-light); flex-shrink: 0; margin-top: 2px; }
.contact-row span { line-height: 1.5; }
.contact-card { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-md); border: 3px solid rgba(255,255,255,.14); }
.contact-map { aspect-ratio: 4 / 3; background: #ddd; }
.contact-map iframe { width: 100%; height: 100%; border: 0; }

/* ===== Footer ===== */
.footer { background: var(--maroon-dark); color: rgba(255,255,255,.85); padding: 44px 0 30px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 22px; text-align: center; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand strong { display: block; color: #fff; font-size: 1.05rem; }
.footer-brand span { font-size: .88rem; color: var(--saffron-light); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; }
.footer-links a { color: rgba(255,255,255,.8); font-size: .95rem; transition: color .2s; }
.footer-links a:hover { color: var(--saffron-light); }
.footer-copy { font-size: .85rem; color: rgba(255,255,255,.55); }

/* ===== Floating WhatsApp ===== */
.fab-whatsapp {
    position: fixed; right: 20px; bottom: 20px; z-index: 90;
    width: 56px; height: 56px; border-radius: 50%; background: #25d366;
    display: grid; place-items: center; box-shadow: 0 10px 26px rgba(37,211,102,.45);
    transition: transform .25s; animation: fab-pulse 2.4s infinite;
}
.fab-whatsapp svg { width: 30px; height: 30px; fill: #fff; }
.fab-whatsapp:hover { transform: scale(1.08); }
@keyframes fab-pulse {
    0% { box-shadow: 0 10px 26px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); }
    70% { box-shadow: 0 10px 26px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 10px 26px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== Legal page ===== */
.legal { padding: 118px 0 80px; max-width: 820px; }
.legal h1 { font-family: var(--serif); color: var(--maroon); font-size: clamp(1.8rem,4vw,2.6rem); margin-bottom: 8px; }
.legal .updated { color: var(--ink-soft); margin-bottom: 32px; font-size: .95rem; }
.legal h2 { font-family: var(--serif); color: var(--maroon); margin: 30px 0 10px; font-size: 1.35rem; }
.legal p, .legal li { color: var(--ink-soft); margin-bottom: 10px; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--maroon); font-weight: 600; }
.back-link { display: inline-block; margin-top: 34px; color: var(--maroon); font-weight: 600; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-photo { order: -1; }
    .hero-roles { align-items: center; }
    .hero-roles li { padding-left: 0; }
    .hero-roles li::before { display: none; }
    .hero-actions { justify-content: center; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .cards, .focus-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .edu-inner, .contact-inner { grid-template-columns: 1fr; gap: 34px; }
    .contact-card { order: -1; }
}
@media (max-width: 720px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed; top: 68px; left: 0; right: 0;
        background: var(--cream); flex-direction: column; align-items: stretch;
        gap: 0; padding: 10px 22px 22px; border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-md);
        transform: translateY(-140%); transition: transform .35s ease; z-index: 99;
    }
    .nav-links.open { transform: translateY(0); }
    .nav-links a { padding: 14px 4px; border-bottom: 1px solid var(--line); }
    .nav-links a:last-child { border-bottom: 0; }
    .nav-cta { text-align: center; margin-top: 10px; }
    .lang-toggle { margin-top: 12px; align-self: center; }
    .section { padding: 66px 0; }
    .hero { padding: 108px 0 66px; }
}
@media (max-width: 420px) {
    .brand-text { font-size: .98rem; }
    .btn { padding: 12px 22px; }
}

@media (prefers-reduced-motion: reduce) {
    * { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .fab-whatsapp { animation: none; }
}
