/* ===== TANAJI SAWANT — STORYTELLING DESIGN ===== */
/* Cinematic Burgundy (#6B1D2A) + Warm Amber (#D4A017) + Cream (#FFF8F0) */
/* Space Grotesk + Lora (serif storytelling) */

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

:root {
    --burg: #6B1D2A;
    --burg-dark: #4A1320;
    --burg-light: #FFF0F3;
    --amber: #D4A017;
    --amber-dark: #B88914;
    --amber-light: #FFFBEB;
    --cream: #FFF8F0;
    --cream-200: #FFF1E0;
    --slate-50: #FAFAF9;
    --slate-100: #F5F5F4;
    --slate-200: #E7E5E4;
    --slate-300: #D6D3D1;
    --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, .14);
    --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: 'Space Grotesk', sans-serif;
    background: var(--cream);
    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: 'Lora', serif;
    color: var(--slate-900);
    font-weight: 700
}

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

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--burg), var(--amber));
    z-index: 1100;
    width: 0;
    transition: none
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 3px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(28, 25, 23, .92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 0;
    transition: var(--tr)
}

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

.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: 8px;
    background: linear-gradient(135deg, var(--burg), var(--amber));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk';
    font-size: .8rem;
    font-weight: 700;
    color: var(--white)
}

.logo-name {
    font-family: 'Lora', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -.01em
}

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

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

.nav-links a {
    color: rgba(255, 255, 255, .5);
    font-family: 'Space Grotesk';
    font-size: .78rem;
    font-weight: 600;
    padding: 18px 14px;
    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: 14px;
    right: 14px;
    height: 2px;
    background: var(--amber);
    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(--white);
    border-radius: 4px;
    transition: var(--tr)
}

/* ===== HERO — CINEMATIC FULLSCREEN ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--slate-900);
    padding-top: 63px
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .25;
    filter: brightness(.6)
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(28, 25, 23, .3) 0%, rgba(28, 25, 23, .7) 40%, rgba(107, 29, 42, .85) 100%)
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 750px;
    padding: 0 24px
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 160, 23, .12);
    border: 1px solid rgba(212, 160, 23, .2);
    color: var(--amber);
    font-family: 'Space Grotesk';
    font-size: .6rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: .15em;
    margin-bottom: 24px
}

.hero-tag .dot {
    width: 6px;
    height: 6px;
    background: var(--amber);
    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.6rem, 5vw, 4.2rem);
    line-height: 1.06;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -.03em
}

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

.hero-slogan {
    font-family: 'Lora', serif;
    font-style: italic;
    color: rgba(255, 255, 255, .6);
    font-size: 1.15rem;
    margin-bottom: 10px
}

.hero-desc {
    color: rgba(255, 255, 255, .45);
    font-size: .9rem;
    max-width: 540px;
    margin: 0 auto 32px;
    line-height: 1.8
}

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

.scroll-cue {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px
}

.scroll-cue span {
    font-family: 'Space Grotesk';
    font-size: .45rem;
    color: rgba(255, 255, 255, .2);
    text-transform: uppercase;
    letter-spacing: .25em
}

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

@keyframes sb {

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

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

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

.btn-burg {
    background: var(--burg);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(107, 29, 42, .25)
}

.btn-burg:hover {
    background: var(--burg-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 29, 42, .35)
}

.btn-amber {
    background: var(--amber);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(212, 160, 23, .25)
}

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

.btn-glass {
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .65);
    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(--burg);
    border: 1.5px solid var(--burg)
}

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

/* ===== STORY SECTIONS ===== */
.story {
    padding: 80px 0;
    position: relative
}

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

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

.story-light {
    background: var(--slate-50)
}

.story-burg {
    background: var(--burg);
    color: var(--white)
}

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

.story-label {
    font-family: 'Space Grotesk';
    font-size: .55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--amber);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px
}

.story-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--amber)
}

.story-title {
    font-family: 'Lora', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 12px;
    letter-spacing: -.01em
}

.story-burg .story-title,
.story-dark .story-title {
    color: var(--white)
}

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

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

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

.v-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--burg), var(--amber));
    transform: scaleX(0);
    transform-origin: left;
    transition: .5s
}

.v-card:hover::before {
    transform: scaleX(1)
}

.v-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent
}

.v-card .ico {
    font-size: 1.5rem;
    margin-bottom: 14px
}

.v-card h3 {
    font-family: 'Space Grotesk';
    font-size: .92rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--slate-900)
}

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

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

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

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

.ach-num {
    font-family: 'Space Grotesk';
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--amber)
}

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

/* UPDATES */
.update-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 0
}

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

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

.u-card-img {
    height: 160px;
    overflow: hidden
}

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

.u-card:hover .u-card-img img {
    transform: scale(1.06)
}

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

.u-date {
    font-family: 'Space Grotesk';
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--amber);
    margin-bottom: 6px
}

.u-card-body h3 {
    font-family: 'Lora', serif;
    font-size: .92rem;
    margin-bottom: 6px;
    color: var(--slate-900)
}

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

/* GALLERY SECTION */
.gallery-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 24px 0
}

.g-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 1
}

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

.g-item:hover img {
    transform: scale(1.08)
}

.g-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(107, 29, 42, .85), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 14px;
    opacity: 0;
    transition: var(--tr)
}

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

.g-ov h4 {
    color: var(--white);
    font-family: 'Space Grotesk';
    font-size: .78rem;
    font-weight: 700
}

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

/* MASONRY (inner page) */
.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(107, 29, 42, .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: .85rem
}

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

/* CTA SECTION */
.cta-sec {
    background: linear-gradient(135deg, var(--burg), var(--burg-dark));
    padding: 72px 0;
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta-sec::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 160, 23, .08), transparent 60%);
    border-radius: 50%
}

.cta-sec h2 {
    color: var(--white);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 12px
}

.cta-sec p {
    color: rgba(255, 255, 255, .55);
    font-size: .92rem;
    max-width: 500px;
    margin: 0 auto 24px;
    line-height: 1.8
}

/* 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(107, 29, 42, .08), transparent 70%);
    border-radius: 50%
}

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

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

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

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

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

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

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

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

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

.sec-light {
    background: var(--slate-50)
}

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

.sec-header {
    margin-bottom: 32px
}

.sec-header h2 {
    font-size: 1.6rem;
    margin-bottom: 6px
}

.sec-header .subtitle {
    font-family: 'Lora', serif;
    font-style: italic;
    color: var(--burg);
    font-size: .85rem;
    margin-bottom: 4px
}

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

.chip {
    background: var(--burg-light);
    color: var(--burg);
    padding: 5px 14px;
    border-radius: 8px;
    font-family: 'Space Grotesk';
    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(--slate-200);
    transition: var(--tr)
}

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

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

.info-card h3 {
    font-family: 'Space Grotesk';
    font-size: .92rem;
    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(--burg);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    color: var(--white)
}

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

.stat-box .sn {
    font-family: 'Space Grotesk';
    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)
}

.stat-box.accent .sl {
    color: rgba(255, 255, 255, .8)
}

/* 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(--slate-200);
    transition: var(--tr)
}

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

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

.w-card h3 {
    font-family: 'Space Grotesk';
    font-size: .92rem;
    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(--slate-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(--burg);
    border: 3px solid var(--burg-light)
}

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

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

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

/* 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: 'Space Grotesk';
    font-size: .62rem;
    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(--slate-200);
    background: var(--white);
    color: var(--slate-900);
    font-family: 'Space Grotesk';
    font-size: .88rem;
    transition: var(--tr);
    outline: none
}

.fg input:focus,
.fg textarea:focus {
    border-color: var(--burg);
    box-shadow: 0 0 0 3px rgba(107, 29, 42, .06)
}

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

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

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

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

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

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

/* 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(--burg);
    border-color: transparent
}

/* ===== 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: 'Lora', serif;
    font-size: 1rem;
    margin-bottom: 10px
}

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

.footer-links h4 {
    color: var(--white);
    font-family: 'Space Grotesk';
    font-size: .85rem;
    margin-bottom: 10px
}

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

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

.footer-contact h4 {
    color: var(--white);
    font-family: 'Space Grotesk';
    font-size: .85rem;
    margin-bottom: 10px
}

.footer-contact p {
    color: var(--slate-500);
    font-size: .8rem;
    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: .75rem
}

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

.footer-bar-right a {
    color: var(--amber);
    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(--burg);
    color: var(--white);
    transform: translateY(-3px)
}

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

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

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

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

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

.rvr {
    opacity: 0;
    transform: translateX(28px);
    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) {
    .hero-content {
        max-width: 90%
    }

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

    .duo.flip {
        direction: ltr
    }

    .vision-grid,
    .update-grid,
    .info-grid {
        grid-template-columns: 1fr 1fr
    }

    .ach-row,
    .stat-row {
        grid-template-columns: 1fr 1fr
    }

    .gallery-strip {
        grid-template-columns: 1fr 1fr
    }
}

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

    .nav-links.active {
        right: 0
    }

    .nav-toggle {
        display: flex
    }

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

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

    .work-grid,
    .vision-grid,
    .update-grid,
    .info-grid,
    .ach-row,
    .stat-row,
    .gallery-strip {
        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
    }
}