/* ===== ASHOK DHARMARAJ PATIL — PEOPLE-FIRST DESIGN ===== */
/* Community Teal (#0D7377) + Warm Orange (#E8590C) + Soft Stone (#FAF9F6) */
/* DM Sans + Playfair Display (elegant community voice) */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

:root {
    --teal: #0D7377;
    --teal-dark: #095456;
    --teal-light: #F0FDFA;
    --teal-50: #CCFBF1;
    --orange: #E8590C;
    --orange-dark: #C2410C;
    --orange-light: #FFF7ED;
    --stone: #FAF9F6;
    --stone-100: #F5F5F0;
    --stone-200: #E7E5E0;
    --stone-300: #D6D3CE;
    --slate-400: #A8A29E;
    --slate-500: #78716C;
    --slate-600: #57534E;
    --slate-700: #44403C;
    --slate-800: #292524;
    --slate-900: #1C1917;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .04);
    --shadow-md: 0 4px 14px rgba(0, 0, 0, .07);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, .1);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, .13);
    --tr: .35s cubic-bezier(.4, 0, .2, 1);
    --radius: 14px
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--stone);
    color: var(--slate-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: 'Playfair Display', serif;
    color: var(--slate-900);
    font-weight: 700
}

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

/* ===== NAVBAR — Transparent glass ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, .04);
    padding: 0;
    transition: var(--tr)
}

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

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

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

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans';
    font-size: .72rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -.02em
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: .98rem;
    font-weight: 700;
    color: var(--slate-900)
}

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

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

.nav-links a {
    color: var(--slate-500);
    font-family: 'DM Sans';
    font-size: .78rem;
    font-weight: 600;
    padding: 18px 14px;
    transition: var(--tr);
    position: relative
}

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

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

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

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--slate-800);
    border-radius: 4px;
    transition: var(--tr)
}

/* ===== HERO — People-first: Constituency skyline as primary visual ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--slate-900);
    padding-top: 60px
}

.hero-bg {
    position: absolute;
    inset: 0
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .55
}

.hero-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(28, 25, 23, .92) 0%, rgba(28, 25, 23, .5) 40%, rgba(13, 115, 119, .15) 100%)
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 24px 60px;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13, 115, 119, .15);
    border: 1px solid rgba(13, 115, 119, .2);
    color: var(--teal-50);
    font-family: 'DM Sans';
    font-size: .58rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: 18px
}

.hero-eyebrow .dot {
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse 2s ease infinite
}

@keyframes pulse {

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

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

.hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -.025em;
    max-width: 650px
}

.hero h1 em {
    color: var(--orange);
    font-style: normal
}

.hero-sub {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: rgba(255, 255, 255, .5);
    font-size: 1rem;
    margin-bottom: 12px
}

.hero-desc {
    color: rgba(255, 255, 255, .4);
    font-size: .88rem;
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 28px
}

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

.scroll-ind {
    position: absolute;
    bottom: 24px;
    right: 40px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px
}

.scroll-ind span {
    font-family: 'DM Sans';
    font-size: .4rem;
    color: rgba(255, 255, 255, .2);
    text-transform: uppercase;
    letter-spacing: .25em;
    writing-mode: vertical-rl
}

.scroll-ind .bar {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, var(--orange), transparent);
    animation: sb 2s ease infinite
}

@keyframes sb {

    0%,
    100% {
        opacity: 1;
        height: 32px
    }

    50% {
        opacity: .3;
        height: 16px
    }
}

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

.btn-teal {
    background: var(--teal);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(13, 115, 119, .2)
}

.btn-teal:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 115, 119, .3)
}

.btn-orange {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(232, 89, 12, .2)
}

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

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

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

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

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

/* ===== SECTION SYSTEM ===== */
.section {
    padding: 72px 0
}

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

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

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

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

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

.sec-eyebrow {
    font-family: 'DM Sans';
    font-size: .55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--orange);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px
}

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

.sec-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    margin-bottom: 8px;
    letter-spacing: -.01em
}

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

/* HIGHLIGHT CARDS (Constituency Highlights — people-first hero-adjacent) */
.hl-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 24px 0
}

.hl-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 22px;
    border: 1px solid var(--stone-200);
    transition: var(--tr);
    text-align: center;
    position: relative;
    overflow: hidden
}

.hl-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: .5s
}

.hl-card:hover::after {
    transform: scaleX(1)
}

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

.hl-num {
    font-family: 'DM Sans';
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 4px
}

.hl-label {
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--slate-500)
}

/* DUO GRID */
.duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    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: 380px;
    object-fit: cover
}

/* QUOTE BLOCK (Leader's Message) */
.quote-block {
    position: relative;
    padding: 32px 36px 32px 56px;
    background: var(--white);
    border-radius: var(--radius);
    border-left: 4px solid var(--teal);
    box-shadow: var(--shadow-sm);
    margin: 24px 0
}

.quote-block::before {
    content: '"';
    position: absolute;
    top: 12px;
    left: 16px;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1;
    color: var(--teal);
    opacity: .15
}

.quote-block p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--slate-700);
    line-height: 1.7;
    margin-bottom: 12px
}

.quote-credit {
    display: flex;
    align-items: center;
    gap: 12px
}

.quote-credit img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--teal-light)
}

.quote-credit .qn {
    font-family: 'DM Sans';
    font-size: .82rem;
    font-weight: 700;
    color: var(--slate-900)
}

.quote-credit .qt {
    font-size: .68rem;
    color: var(--slate-500)
}

/* STORY CARDS (Citizen Stories) */
.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 0
}

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

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

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

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

.s-card:hover .s-card-img img {
    transform: scale(1.05)
}

.s-card-body {
    padding: 18px
}

.s-tag {
    font-family: 'DM Sans';
    font-size: .55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--orange);
    margin-bottom: 6px
}

.s-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: .9rem;
    margin-bottom: 6px;
    color: var(--slate-900)
}

.s-card-body p {
    font-size: .78rem;
    color: var(--slate-500);
    line-height: 1.6
}

/* INITIATIVE CARDS */
.init-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 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: 3px;
    height: 100%;
    background: var(--teal);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: .5s
}

.i-card:hover::before {
    transform: scaleY(1)
}

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

.i-card .ico {
    font-size: 1.4rem;
    margin-bottom: 12px
}

.i-card h3 {
    font-family: 'DM Sans';
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--slate-900)
}

.i-card p {
    font-size: .8rem;
    color: var(--slate-500);
    line-height: 1.7
}

/* DEV SNAPSHOT */
.snap-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 24px 0
}

.snap-box {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    backdrop-filter: blur(6px);
    transition: var(--tr)
}

.snap-box:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateY(-3px)
}

.snap-num {
    font-family: 'DM Sans';
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--orange)
}

.snap-label {
    font-size: .55rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-top: 6px;
    color: rgba(255, 255, 255, .5)
}

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

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

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

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

.pg-header h1 span {
    color: var(--orange)
}

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

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

.breadcrumb a {
    color: var(--orange)
}

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

.chip-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px
}

.chip {
    background: var(--teal-light);
    color: var(--teal);
    padding: 5px 14px;
    border-radius: 8px;
    font-family: 'DM Sans';
    font-size: .72rem;
    font-weight: 700
}

/* INFO CARDS */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 28px 0
}

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

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--teal)
}

.info-card .ico {
    font-size: 1.4rem;
    margin-bottom: 12px
}

.info-card h3 {
    font-family: 'DM Sans';
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--slate-900)
}

.info-card p {
    font-size: .82rem;
    color: var(--slate-500);
    line-height: 1.7
}

/* STAT ROW */
.stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 28px 0
}

.stat-box {
    background: var(--teal);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    color: var(--white)
}

.stat-box.accent {
    background: var(--orange)
}

.stat-box .sn {
    font-family: 'DM Sans';
    font-size: 2rem;
    font-weight: 700;
    line-height: 1
}

.stat-box .sl {
    font-size: .55rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: 4px;
    color: rgba(255, 255, 255, .6)
}

/* WORK CARDS */
.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 28px 0
}

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

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

.w-ico {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--teal-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0
}

.w-card h3 {
    font-family: 'DM Sans';
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--slate-900)
}

.w-card p {
    font-size: .8rem;
    color: var(--slate-500);
    line-height: 1.7
}

/* TIMELINE */
.timeline {
    position: relative;
    padding-left: 30px;
    margin: 28px 0
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 8px;
    width: 2px;
    height: 100%;
    background: var(--stone-200)
}

.tl-item {
    position: relative;
    margin-bottom: 24px;
    padding-left: 20px
}

.tl-dot {
    position: absolute;
    left: -26px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--teal);
    border: 3px solid var(--teal-light)
}

.tl-year {
    font-family: 'DM Sans';
    font-size: .68rem;
    font-weight: 700;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 2px
}

.tl-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: .92rem;
    margin-bottom: 4px;
    color: var(--slate-900)
}

.tl-item p {
    font-size: .82rem;
    color: var(--slate-500);
    line-height: 1.7
}

/* MASONRY */
.masonry {
    column-count: 3;
    column-gap: 14px;
    margin: 28px 0
}

.m-item {
    break-inside: avoid;
    margin-bottom: 14px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer
}

.m-item img {
    width: 100%;
    display: block;
    transition: .5s
}

.m-item:hover img {
    transform: scale(1.06)
}

.m-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 115, 119, .9), transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: var(--tr)
}

.m-item:hover .m-ov {
    opacity: 1
}

.m-ov h4 {
    color: var(--white);
    font-size: .82rem
}

.m-ov p {
    color: var(--orange);
    font-size: .55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(28, 25, 23, .95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--tr)
}

.lightbox.active {
    opacity: 1;
    visibility: visible
}

.lightbox img {
    max-width: 85%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px
}

.lb-x {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .06);
    background: rgba(255, 255, 255, .04);
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tr)
}

.lb-x:hover {
    background: var(--teal);
    border-color: transparent
}

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

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

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

.fg label {
    font-family: 'DM Sans';
    font-size: .6rem;
    font-weight: 700;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: .1em
}

.fg input,
.fg textarea {
    padding: 13px 16px;
    border-radius: 10px;
    border: 1.5px solid var(--stone-200);
    background: var(--white);
    color: var(--slate-900);
    font-family: 'DM Sans';
    font-size: .85rem;
    transition: var(--tr);
    outline: none
}

.fg input:focus,
.fg textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(13, 115, 119, .05)
}

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

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

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

.c-ico {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--teal-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0
}

.c-card h4 {
    font-family: 'DM Sans';
    font-size: .82rem;
    color: var(--slate-900);
    font-weight: 700;
    margin-bottom: 2px
}

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

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

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

.footer-about h3 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    margin-bottom: 10px
}

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

.footer-links h4 {
    color: var(--white);
    font-family: 'DM Sans';
    font-size: .82rem;
    font-weight: 700;
    margin-bottom: 10px
}

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

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

.footer-contact h4 {
    color: var(--white);
    font-family: 'DM Sans';
    font-size: .82rem;
    font-weight: 700;
    margin-bottom: 10px
}

.footer-contact p {
    color: var(--slate-500);
    font-size: .78rem;
    line-height: 1.8
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rvs {
    opacity: 0;
    transform: scale(.92);
    transition: opacity .5s ease, transform .5s ease
}

.rvs.on {
    opacity: 1;
    transform: scale(1)
}

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

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

    .duo.flip {
        direction: ltr
    }

    .hl-grid,
    .snap-row,
    .stat-row,
    .init-grid,
    .story-grid,
    .info-grid {
        grid-template-columns: 1fr 1fr
    }
}

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

    .nav-links.active {
        right: 0
    }

    .nav-toggle {
        display: flex
    }

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

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

    .hl-grid,
    .snap-row,
    .stat-row,
    .work-grid,
    .init-grid,
    .story-grid,
    .info-grid {
        grid-template-columns: 1fr
    }

    .masonry {
        column-count: 2
    }

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

@media(max-width:480px) {
    .masonry {
        column-count: 1
    }
}