/* ===== DILIP LANDE — MINIMAL LEADERSHIP ===== */
/* Black (#0A0A0A) + Gold (#C9A84C) + Ivory (#FAFAF9) */
/* Cormorant Garamond (elegant serif) + Inter (clean sans) */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --black: #0A0A0A;
    --black-90: #1A1A1A;
    --black-80: #2A2A2A;
    --gold: #C9A84C;
    --gold-dark: #B08D35;
    --gold-light: #D4B96A;
    --gold-50: #FBF8F0;
    --gold-100: #F5EDDA;
    --ivory: #FAFAF9;
    --ivory-100: #F5F5F4;
    --ivory-200: #E7E5E4;
    --stone-400: #A8A29E;
    --stone-500: #78716C;
    --stone-600: #57534E;
    --stone-700: #44403C;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .03);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, .04);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, .06);
    --tr: .4s cubic-bezier(.4, 0, .2, 1);
    --radius: 2px
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--ivory);
    color: var(--stone-600);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-weight: 400
}

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

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

ul,
ol {
    list-style: none
}

h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--black);
    font-weight: 600;
    letter-spacing: -.01em
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 28px
}

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

.navbar.scrolled {
    background: rgba(250, 250, 249, .95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--ivory-200)
}

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

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

.logo-text {
    font-family: 'Cormorant Garamond';
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -.01em
}

.navbar:not(.scrolled) .logo-text {
    color: var(--white)
}

.logo-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%
}

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

.nav-links a {
    color: var(--stone-500);
    font-family: 'Inter';
    font-size: .62rem;
    font-weight: 500;
    padding: 16px 10px;
    transition: var(--tr);
    letter-spacing: .04em
}

.navbar:not(.scrolled) .nav-links a {
    color: rgba(255, 255, 255, .4)
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--black)
}

.navbar:not(.scrolled) .nav-links a:hover,
.navbar:not(.scrolled) .nav-links a.active {
    color: var(--white)
}

.nav-links a.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: var(--gold);
    margin-top: 2px
}

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

.nav-toggle span {
    display: block;
    width: 16px;
    height: 1px;
    background: var(--black);
    transition: var(--tr)
}

.navbar:not(.scrolled) .nav-toggle span {
    background: var(--white)
}

/* ===== HERO — centered minimal ===== */
.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    position: relative;
    overflow: hidden;
    text-align: center
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, .03), transparent 70%)
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 580px;
    padding: 20px
}

.hero-inner .h-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 16px
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 500
}

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

.hero-sub {
    color: rgba(255, 255, 255, .25);
    font-size: .78rem;
    font-weight: 400;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 8px
}

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

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-family: 'Inter';
    font-weight: 600;
    font-size: .72rem;
    cursor: pointer;
    border: none;
    transition: var(--tr);
    letter-spacing: .02em
}

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

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

.btn-ghost {
    background: transparent;
    color: rgba(255, 255, 255, .3);
    border: 1px solid rgba(255, 255, 255, .08)
}

.btn-ghost:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, .15)
}

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

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

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

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

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

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

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

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

.sec-label {
    font-family: 'Inter';
    font-size: .48rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .25em;
    color: var(--gold);
    margin-bottom: 6px
}

.sec-heading {
    font-family: 'Cormorant Garamond';
    font-size: clamp(1.4rem, 2.8vw, 1.9rem);
    margin-bottom: 6px;
    font-weight: 500
}

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

/* ===== GOLDEN DIVIDER ===== */
.g-div {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 24px 0
}

.g-div.center {
    margin: 24px auto
}

/* ===== VISION BLOCK (centered quote) ===== */
.vision {
    text-align: center;
    padding: 48px 24px;
    max-width: 640px;
    margin: 0 auto
}

.vision blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.55;
    color: var(--black);
    font-weight: 400;
    margin-bottom: 16px
}

.vision .v-rule {
    width: 30px;
    height: 1px;
    background: var(--gold);
    margin: 14px auto
}

.vision .v-name {
    font-family: 'Inter';
    font-size: .62rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: .1em;
    text-transform: uppercase
}

.vision .v-sub {
    font-family: 'Inter';
    font-size: .52rem;
    color: var(--stone-400);
    margin-top: 2px
}

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

.m-card {
    background: var(--white);
    padding: 28px 22px;
    border: 1px solid var(--ivory-200);
    transition: var(--tr);
    position: relative
}

.m-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: .5s
}

.m-card:hover::after {
    width: 100%
}

.m-card:hover {
    box-shadow: var(--shadow-md)
}

.m-card .m-num {
    font-family: 'Cormorant Garamond';
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-100);
    line-height: 1;
    margin-bottom: 6px
}

.m-card h3 {
    font-family: 'Inter';
    font-size: .78rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px
}

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

/* ===== DUO (minimal layout) ===== */
.duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 28px 0
}

.duo.flip {
    direction: rtl
}

.duo.flip>* {
    direction: ltr
}

.duo-img {
    overflow: hidden
}

.duo-img img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    filter: grayscale(20%);
    transition: .6s
}

.duo-img:hover img {
    filter: grayscale(0%)
}

/* ===== OVERVIEW STATS ===== */
.stat-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 28px 0;
    flex-wrap: wrap
}

.stat-item {
    text-align: center
}

.stat-item .sv {
    font-family: 'Cormorant Garamond';
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1
}

.stat-item .sl {
    font-family: 'Inter';
    font-size: .5rem;
    font-weight: 500;
    color: var(--stone-400);
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-top: 4px
}

/* ===== PAGE HEADER ===== */
.pg-header {
    padding: 120px 0 44px;
    background: var(--black);
    text-align: center
}

.pg-header h1 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    color: var(--white);
    margin-bottom: 4px;
    font-weight: 500
}

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

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

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
    font-size: .58rem;
    color: rgba(255, 255, 255, .15)
}

.breadcrumb a {
    color: var(--gold);
    font-weight: 500
}

.breadcrumb em {
    font-style: normal
}

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

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

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

.fg label {
    font-family: 'Inter';
    font-size: .48rem;
    font-weight: 600;
    color: var(--stone-400);
    text-transform: uppercase;
    letter-spacing: .15em
}

.fg input,
.fg textarea {
    padding: 10px 12px;
    border: none;
    border-bottom: 1px solid var(--ivory-200);
    background: transparent;
    color: var(--black);
    font-family: 'Inter';
    font-size: .82rem;
    transition: var(--tr);
    outline: none;
    border-radius: 0
}

.fg input:focus,
.fg textarea:focus {
    border-bottom-color: var(--gold)
}

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

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

.c-card {
    padding: 14px 0;
    border-bottom: 1px solid var(--ivory-200);
    display: flex;
    gap: 10px
}

.c-card:last-of-type {
    border-bottom: none
}

.c-ico {
    font-size: .85rem;
    margin-top: 2px
}

.c-card h4 {
    font-family: 'Inter';
    font-size: .72rem;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 1px
}

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

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

.footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 24px;
    flex-wrap: wrap
}

.footer-about h3 {
    font-family: 'Cormorant Garamond';
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 4px
}

.footer-about p {
    color: var(--stone-400);
    font-size: .68rem;
    line-height: 1.7;
    max-width: 280px
}

.footer-links h4 {
    font-family: 'Inter';
    color: var(--white);
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 8px
}

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

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

.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: rgba(255, 255, 255, .5);
    font-size: .58rem
}

.footer-bar-right {
    font-size: .58rem;
    color: rgba(255, 255, 255, .5)
}

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

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

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .12);
    color: var(--stone-400);
    transition: var(--tr)
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px)
}

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

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

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

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

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

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

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

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

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

    .duo.flip {
        direction: ltr
    }

    .m-grid {
        grid-template-columns: 1fr 1fr
    }
}

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

    .nav-links.active {
        right: 0
    }

    .nav-toggle {
        display: flex
    }

    .nav-links a {
        padding: 10px 0;
        color: var(--stone-600) !important
    }

    .nav-links a.active {
        color: var(--black) !important
    }

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

    .m-grid {
        grid-template-columns: 1fr
    }

    .stat-row {
        gap: 24px
    }

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

    .footer-inner {
        flex-direction: column
    }
}