/* ==========================================================
   Socialist Deepak — Premium Homepage V2
   ========================================================== */

:root {
    --v2-maroon: #98152a;
    --v2-maroon-dark: #771020;
    --v2-navy: #102b3a;
    --v2-navy-soft: #173a4d;
    --v2-gold: #c69a49;
    --v2-ivory: #faf7f1;
    --v2-surface: #ffffff;
    --v2-soft: #f4f6f7;
    --v2-text: #263846;
    --v2-muted: #697985;
    --v2-border: rgba(16, 43, 58, 0.10);
    --v2-shadow: 0 22px 60px rgba(16, 43, 58, 0.08);
    --v2-shadow-hover: 0 30px 70px rgba(16, 43, 58, 0.13);
}

/* ---------- Shared ---------- */

.v2-section {
    padding: 108px 0;
}

.v2-kicker,
.v2-overline,
.v2-card-label {
    margin: 0 0 10px;
    color: var(--v2-maroon);
    font-family: var(--sd-font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
}

.v2-section h2 {
    margin: 0;
    color: var(--v2-navy);
    font-family: var(--sd-font-display);
    font-size: clamp(38px, 4vw, 54px);
    font-weight: 650;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.v2-section h2 span {
    color: var(--v2-maroon);
}

.v2-section-heading {
    max-width: 820px;
}

.v2-centered {
    margin-inline: auto;
    text-align: center;
}

.v2-centered > p:last-child {
    max-width: 680px;
    margin: 18px auto 0;
    color: var(--v2-muted);
    font-size: 16px;
    line-height: 1.75;
}

/* ---------- Hero ---------- */

.v2-hero {
    position: relative;
    overflow: hidden;
    min-height: 690px;
    background:
        radial-gradient(
            circle at 74% 38%,
            rgba(198, 154, 73, 0.12),
            transparent 24%
        ),
        linear-gradient(
            100deg,
            #ffffff 0%,
            #ffffff 54%,
            var(--v2-ivory) 100%
        );
}

.v2-hero::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: -110px;
    width: 380px;
    background:
        linear-gradient(
            155deg,
            var(--v2-maroon) 0%,
            var(--v2-maroon-dark) 100%
        );
    transform: skewX(-8deg);
}

.v2-hero-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.v2-hero-ring {
    position: absolute;
    width: 170px;
    height: 170px;
    right: 10%;
    top: 27%;
    border: 1px solid rgba(198, 154, 73, 0.36);
    border-radius: 50%;
}

.v2-hero-line {
    position: absolute;
    width: 90px;
    height: 3px;
    left: 7%;
    top: 17%;
    background: var(--v2-gold);
}

.v2-hero-grid {
    position: relative;
    z-index: 2;
    min-height: 690px;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 80px;
    align-items: center;
}

.v2-hero-copy {
    max-width: 730px;
    padding: 82px 0 78px;
}

.v2-overline {
    margin-bottom: 14px;
    font-size: 14px;
}

.v2-identity {
    margin: 0;
    display: flex;
    flex-direction: column;
}

.v2-name {
    color: var(--v2-maroon);
    font-family: var(--sd-font-display);
    font-size: clamp(66px, 6vw, 88px);
    font-weight: 800;
    line-height: 0.94;
    letter-spacing: -0.04em;
}

.v2-role {
    margin-top: 11px;
    color: var(--v2-navy);
    font-family: var(--sd-font-display);
    font-size: clamp(34px, 3vw, 44px);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.02em;
}

.v2-identity-tags {
    margin-top: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    color: var(--v2-maroon);
    font-size: 13px;
    font-weight: 700;
}

.v2-identity-tags i {
    width: 5px;
    height: 5px;
    background: var(--v2-gold);
    border-radius: 50%;
}

.v2-lead {
    max-width: 650px;
    margin: 24px 0 0;
    color: #536571;
    font-size: 18px;
    line-height: 1.78;
}

.v2-hero-pillars {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.v2-hero-pillars article {
    display: flex;
    gap: 12px;
    padding-top: 17px;
    border-top: 1px solid rgba(16, 43, 58, 0.12);
}

.v2-pillar-index {
    color: var(--v2-gold);
    font-size: 11px;
    font-weight: 800;
}

.v2-hero-pillars strong {
    display: block;
    color: var(--v2-navy);
    font-size: 14px;
    font-weight: 700;
}

.v2-hero-pillars p {
    margin: 5px 0 0;
    color: var(--v2-muted);
    font-size: 12.5px;
    line-height: 1.6;
}

.v2-actions {
    margin-top: 34px;
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
}

.v2-btn {
    min-height: 50px;
    padding: 0 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    font-family: var(--sd-font-body);
    font-size: 14px;
    font-weight: 700;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        background 0.22s ease;
}

.v2-btn-primary {
    color: #fff;
    background: var(--v2-maroon);
    box-shadow: 0 12px 28px rgba(152, 21, 42, 0.18);
}

.v2-btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    background: var(--v2-maroon-dark);
    box-shadow: 0 16px 34px rgba(152, 21, 42, 0.23);
}

.v2-btn-secondary {
    color: var(--v2-maroon);
    background: #fff;
    border: 1px solid rgba(152, 21, 42, 0.35);
}

.v2-btn-secondary:hover {
    transform: translateY(-2px);
    background: #fff8f8;
}

/* ---------- Photo ---------- */

.v2-hero-media {
    align-self: stretch;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-top: 62px;
}

.v2-photo-shell {
    position: relative;
    width: min(100%, 470px);
    isolation: isolate;
}

.v2-photo-shell::before {
    content: "";
    position: absolute;
    inset: 12% -8% -1% 11%;
    border-radius: 42% 42% 26px 26px;
    background:
        linear-gradient(
            145deg,
            rgba(152, 21, 42, 0.96),
            rgba(119, 16, 32, 1)
        );
    z-index: -2;
    transform: rotate(2.5deg);
}

.v2-photo-accent {
    position: absolute;
    width: 88px;
    height: 88px;
    left: -32px;
    top: 31%;
    border-radius: 50%;
    background: rgba(198, 154, 73, 0.14);
    z-index: -1;
}

.v2-portrait {
    width: 100%;
    max-height: 620px;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 34px 34px 10px 10px;
    box-shadow:
        0 36px 90px rgba(16, 43, 58, 0.22),
        0 3px 12px rgba(16, 43, 58, 0.08);
}

.v2-photo-caption {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    min-height: 76px;
    padding: 14px 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: #fff;
    background: rgba(16, 43, 58, 0.93);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    backdrop-filter: blur(12px);
}

.v2-photo-caption strong,
.v2-photo-caption span {
    display: block;
}

.v2-photo-caption strong {
    font-family: var(--sd-font-display);
    font-size: 20px;
    font-weight: 650;
}

.v2-photo-caption div > span {
    margin-top: 2px;
    color: rgba(255,255,255,0.72);
    font-size: 12px;
}

.v2-caption-mark {
    width: 42px;
    height: 42px;
    display: grid !important;
    place-items: center;
    flex: 0 0 auto;
    color: #fff !important;
    background: var(--v2-maroon);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
}

/* ---------- Trust Bar ---------- */

.v2-trust-bar {
    position: relative;
    z-index: 4;
    background: var(--v2-navy);
}

.v2-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.v2-trust-grid article {
    min-height: 112px;
    padding: 28px 27px;
    display: flex;
    gap: 14px;
    align-items: center;
    border-right: 1px solid rgba(255,255,255,0.09);
}

.v2-trust-grid article:last-child {
    border-right: 0;
}

.v2-trust-number {
    color: var(--v2-gold);
    font-size: 11px;
    font-weight: 800;
}

.v2-trust-grid strong {
    color: #fff;
    font-family: var(--sd-font-display);
    font-size: 18px;
    font-weight: 600;
}

.v2-trust-grid p {
    margin: 4px 0 0;
    color: rgba(255,255,255,0.65);
    font-size: 12.5px;
    line-height: 1.55;
}

/* ---------- About ---------- */

.v2-about {
    background: #fff;
}

.v2-about-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 92px;
    align-items: center;
}

.v2-about-copy h2 span {
    display: block;
}

.v2-about-intro {
    margin-top: 27px !important;
    color: var(--v2-navy) !important;
    font-size: 19px !important;
    line-height: 1.72 !important;
    font-weight: 500 !important;
}

.v2-about-copy > p:not(.v2-kicker):not(.v2-about-intro) {
    margin-top: 15px;
    color: var(--v2-muted);
    font-size: 15.5px;
    line-height: 1.82;
}

.v2-text-link {
    margin-top: 23px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--v2-maroon);
    font-size: 14px;
    font-weight: 700;
}

.v2-text-link span {
    transition: transform 0.2s ease;
}

.v2-text-link:hover span {
    transform: translateX(4px);
}

.v2-quote {
    position: relative;
    min-height: 360px;
    padding: 50px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--v2-ivory);
    border: 1px solid rgba(198, 154, 73, 0.18);
    border-radius: 24px;
    box-shadow: var(--v2-shadow);
}

.v2-quote-mark {
    position: absolute;
    right: 35px;
    top: 20px;
    color: rgba(152, 21, 42, 0.09);
    font-family: Georgia, serif;
    font-size: 105px;
    line-height: 1;
}

.v2-quote blockquote {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--v2-navy);
    font-family: var(--sd-font-display);
    font-size: clamp(25px, 2.2vw, 31px);
    font-weight: 500;
    line-height: 1.56;
}

.v2-quote footer {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.v2-quote footer span {
    width: 34px;
    height: 2px;
    background: var(--v2-maroon);
}

.v2-quote footer strong {
    color: var(--v2-maroon);
    font-size: 13px;
}

/* ---------- Focus ---------- */

.v2-focus-section {
    background: var(--v2-ivory);
}

.v2-focus-grid {
    margin-top: 55px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.v2-focus-grid article {
    position: relative;
    min-height: 235px;
    padding: 34px 30px 30px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--v2-border);
    border-radius: 20px;
    box-shadow: 0 12px 36px rgba(16, 43, 58, 0.045);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.v2-focus-grid article:hover {
    transform: translateY(-6px);
    border-color: rgba(152, 21, 42, 0.18);
    box-shadow: var(--v2-shadow-hover);
}

.v2-card-number {
    position: absolute;
    right: 22px;
    top: 20px;
    color: rgba(16, 43, 58, 0.12);
    font-family: var(--sd-font-display);
    font-size: 34px;
    font-weight: 700;
}

.v2-card-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 26px;
    color: var(--v2-maroon);
    background: #fff5f6;
    border-radius: 13px;
}

.v2-card-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.v2-focus-grid h3 {
    margin: 0 0 10px;
    color: var(--v2-navy);
    font-family: var(--sd-font-display);
    font-size: 20px;
    font-weight: 650;
}

.v2-focus-grid p {
    margin: 0;
    color: var(--v2-muted);
    font-size: 14px;
    line-height: 1.72;
}

/* ---------- Shared content headings ---------- */

.v2-split-heading {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 70px;
    align-items: end;
}

.v2-split-heading > p {
    margin: 0;
    color: var(--v2-muted);
    font-size: 15px;
    line-height: 1.75;
}

/* ---------- Activities ---------- */

.v2-content-section {
    background: #fff;
}

.v2-editorial-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 24px;
}

.v2-feature-card {
    overflow: hidden;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    min-height: 300px;
    background: var(--v2-navy);
    border-radius: 22px;
    box-shadow: var(--v2-shadow);
}

.v2-feature-visual {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    background:
        linear-gradient(
            145deg,
            rgba(152,21,42,0.96),
            rgba(119,16,32,0.88)
        );
}

.v2-feature-visual::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -35px;
    top: 35px;
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 50%;
}

.v2-feature-visual span {
    position: relative;
    z-index: 1;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 700;
}

.v2-feature-body {
    padding: 38px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.v2-feature-body .v2-card-label {
    color: var(--v2-gold);
}

.v2-feature-body h3 {
    margin: 0;
    color: #fff;
    font-family: var(--sd-font-display);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.35;
}

.v2-feature-body > p:last-child {
    margin: 14px 0 0;
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    line-height: 1.7;
}

.v2-editorial-side {
    display: grid;
    gap: 18px;
}

.v2-editorial-side article {
    padding: 27px 27px;
    display: flex;
    gap: 17px;
    align-items: flex-start;
    background: var(--v2-soft);
    border: 1px solid var(--v2-border);
    border-radius: 18px;
}

.v2-small-index {
    margin-top: 3px;
    color: var(--v2-gold);
    font-size: 11px;
    font-weight: 800;
}

.v2-editorial-side h3 {
    margin: 0;
    color: var(--v2-navy);
    font-family: var(--sd-font-display);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
}

.v2-editorial-side p:last-child {
    margin: 7px 0 0;
    color: var(--v2-muted);
    font-size: 13px;
}

/* ---------- Thoughts ---------- */

.v2-thoughts {
    background: var(--v2-ivory);
}

.v2-thought-layout {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 70px;
    align-items: center;
}

.v2-thought-intro {
    margin: 20px 0 0;
    color: var(--v2-muted);
    font-size: 15px;
    line-height: 1.78;
}

.v2-thought-card {
    position: relative;
    min-height: 220px;
    padding: 38px 78px 38px 38px;
    display: flex;
    gap: 24px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--v2-border);
    border-radius: 22px;
    box-shadow: var(--v2-shadow);
}

.v2-thought-number {
    color: rgba(152,21,42,0.18);
    font-family: var(--sd-font-display);
    font-size: 50px;
    font-weight: 700;
}

.v2-thought-card h3 {
    margin: 0;
    color: var(--v2-navy);
    font-family: var(--sd-font-display);
    font-size: 25px;
    font-weight: 600;
}

.v2-thought-card div > p:last-child {
    margin: 10px 0 0;
    color: var(--v2-muted);
    font-size: 14px;
    line-height: 1.72;
}

.v2-arrow {
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--v2-maroon);
    font-size: 25px;
}

/* ---------- Media ---------- */

.v2-media-section {
    background: #fff;
}

.v2-media-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr 0.85fr;
    gap: 22px;
}

.v2-media-large,
.v2-media-small {
    overflow: hidden;
    background: var(--v2-soft);
    border: 1px solid var(--v2-border);
    border-radius: 20px;
}

.v2-media-placeholder {
    position: relative;
    min-height: 230px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(
            145deg,
            var(--v2-navy),
            var(--v2-navy-soft)
        );
}

.v2-media-large .v2-media-placeholder {
    min-height: 290px;
}

.v2-media-small:nth-child(2) .v2-media-placeholder {
    background:
        linear-gradient(
            145deg,
            #812033,
            var(--v2-maroon)
        );
}

.v2-media-small:nth-child(3) .v2-media-placeholder {
    background:
        linear-gradient(
            145deg,
            #8d754c,
            var(--v2-gold)
        );
}

.v2-play {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    padding-left: 4px;
    color: #fff;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.24);
    border-radius: 50%;
}

.v2-media-large > div:last-child,
.v2-media-small > div:last-child {
    padding: 25px 26px 27px;
}

.v2-media-grid h3 {
    margin: 0;
    color: var(--v2-navy);
    font-family: var(--sd-font-display);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.42;
}

/* ---------- Contact ---------- */

.v2-connect {
    background: var(--v2-ivory);
}

.v2-connect-panel {
    position: relative;
    overflow: hidden;
    padding: 52px 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    background: #fff;
    border: 1px solid rgba(198,154,73,0.23);
    border-radius: 24px;
    box-shadow: var(--v2-shadow);
}

.v2-connect-panel::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -55px;
    bottom: -75px;
    border: 1px solid rgba(152,21,42,0.10);
    border-radius: 50%;
}

.v2-connect-panel > div:first-child {
    max-width: 700px;
}

.v2-connect-panel h2 {
    font-size: clamp(36px, 3.5vw, 48px);
}

.v2-connect-panel > div:first-child > p:last-child {
    margin: 16px 0 0;
    color: var(--v2-muted);
    font-size: 14.5px;
    line-height: 1.72;
}

.v2-connect-actions {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
    .v2-hero-grid {
        gap: 48px;
    }

    .v2-name {
        font-size: clamp(58px, 6vw, 76px);
    }

    .v2-role {
        font-size: clamp(32px, 3.3vw, 40px);
    }

    .v2-focus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .v2-section {
        padding: 86px 0;
    }

    .v2-hero {
        min-height: auto;
    }

    .v2-hero::after {
        display: none;
    }

    .v2-hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .v2-hero-copy {
        max-width: none;
        padding-top: 65px;
        padding-bottom: 20px;
    }

    .v2-hero-media {
        padding: 0 0 45px;
    }

    .v2-photo-shell {
        width: min(100%, 430px);
    }

    .v2-about-grid,
    .v2-thought-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .v2-editorial-grid,
    .v2-media-grid {
        grid-template-columns: 1fr;
    }

    .v2-editorial-side {
        grid-template-columns: repeat(2, 1fr);
    }

    .v2-media-small {
        display: grid;
        grid-template-columns: 0.7fr 1.3fr;
    }

    .v2-media-small .v2-media-placeholder {
        min-height: 190px;
    }

    .v2-connect-panel {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 700px) {
    .v2-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v2-trust-grid article:nth-child(2) {
        border-right: 0;
    }

    .v2-trust-grid article:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,0.09);
    }

    .v2-split-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .v2-feature-card {
        grid-template-columns: 1fr;
    }

    .v2-feature-visual {
        min-height: 175px;
    }
}

@media (max-width: 560px) {
    .v2-section {
        padding: 70px 0;
    }

    .v2-overline {
        font-size: 12.5px;
    }

    .v2-name {
        font-size: clamp(47px, 14.5vw, 59px);
        line-height: 0.98;
    }

    .v2-role {
        margin-top: 8px;
        font-size: clamp(27px, 8.5vw, 34px);
    }

    .v2-identity-tags {
        margin-top: 15px;
        gap: 6px;
        font-size: 12px;
    }

    .v2-lead {
        margin-top: 20px;
        font-size: 16px;
        line-height: 1.72;
    }

    .v2-hero-pillars {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .v2-hero-pillars article {
        padding-top: 13px;
    }

    .v2-photo-shell {
        width: min(96%, 365px);
    }

    .v2-trust-grid {
        grid-template-columns: 1fr;
    }

    .v2-trust-grid article {
        min-height: 88px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.09);
    }

    .v2-trust-grid article:last-child {
        border-bottom: 0;
    }

    .v2-about-grid {
        gap: 35px;
    }

    .v2-quote {
        min-height: auto;
        padding: 34px 28px;
    }

    .v2-focus-grid {
        grid-template-columns: 1fr;
    }

    .v2-focus-grid article {
        min-height: auto;
    }

    .v2-editorial-side {
        grid-template-columns: 1fr;
    }

    .v2-feature-body {
        padding: 30px 26px;
    }

    .v2-feature-body h3 {
        font-size: 24px;
    }

    .v2-thought-card {
        min-height: auto;
        padding: 30px 55px 30px 25px;
    }

    .v2-thought-number {
        display: none;
    }

    .v2-media-small {
        display: block;
    }

    .v2-media-small .v2-media-placeholder {
        min-height: 190px;
    }

    .v2-connect-panel {
        padding: 34px 27px;
    }

    .v2-connect-actions {
        width: 100%;
        flex-wrap: wrap;
    }

    .v2-connect-actions .v2-btn {
        flex: 1 1 135px;
    }
}
