/*==============================================================
  ADITYO PERMANA
  PREMIUM BIOGRAPHY WEBSITE
  VERSION 1.0
==============================================================*/

/*==============================================================
GOOGLE FONTS
==============================================================*/

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


/*==============================================================
ROOT VARIABLES
==============================================================*/

:root{

    /* Primary */

    --gold:#D4AF37;
    --gold-light:#E8C96A;
    --gold-soft:#F3DE9A;

    /* Background */

    --white:#ffffff;
    --ivory:#FFFCF5;
    --champagne:#FAF6EA;
    --beige:#F4EEDC;

    /* Text */

    --text:#2B2B2B;
    --text-light:#666666;
    --text-muted:#888888;

    /* Border */

    --border:#ECE4CC;

    /* Shadow */

    --shadow-sm:0 8px 20px rgba(0,0,0,.05);

    --shadow:

        0 20px 60px rgba(0,0,0,.08);

    --shadow-lg:

        0 30px 90px rgba(0,0,0,.12);

    /* Radius */

    --radius:20px;

    --radius-lg:30px;

    /* Transition */

    --transition:.4s ease;

    /* Width */

    --container:1280px;

}


/*==============================================================
RESET
==============================================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    background:var(--ivory);

    color:var(--text);

    line-height:1.9;

    overflow-x:hidden;

    position:relative;

}


/*==============================================================
BACKGROUND
==============================================================*/

body::before{

    content:"";

    position:fixed;

    inset:0;

    z-index:-3;

    background:

    radial-gradient(circle at top left,

    rgba(212,175,55,.08),

    transparent 35%),

    radial-gradient(circle at bottom right,

    rgba(232,201,106,.10),

    transparent 40%),

    linear-gradient(

    180deg,

    #ffffff,

    #fefcf8,

    #faf6ea);

}


/*==============================================================
NOISE EFFECT
==============================================================*/

body::after{

    content:"";

    position:fixed;

    inset:0;

    opacity:.04;

    z-index:-2;

    pointer-events:none;

    background-image:url("https://www.transparenttextures.com/patterns/paper-fibers.png");

}


/*==============================================================
IMAGES
==============================================================*/

img{

    max-width:100%;

    display:block;

}


/*==============================================================
LINK
==============================================================*/

a{

    text-decoration:none;

    color:inherit;

    transition:var(--transition);

}


/*==============================================================
LIST
==============================================================*/

ul{

    list-style:none;

}


/*==============================================================
CONTAINER
==============================================================*/

.container{

    width:min(92%,var(--container));

    margin:auto;

}


/*==============================================================
SECTION
==============================================================*/

.section{

    padding:120px 0;

    position:relative;

}


/*==============================================================
SECTION TITLE
==============================================================*/

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-subtitle{

    display:inline-block;

    letter-spacing:4px;

    text-transform:uppercase;

    color:var(--gold);

    font-weight:700;

    font-size:.82rem;

    margin-bottom:18px;

}

.section-title h2{

    font-family:

    'Cormorant Garamond',

    serif;

    font-size:clamp(2.5rem,5vw,4.5rem);

    line-height:1.15;

    font-weight:600;

    color:#1d1d1d;

    margin-bottom:25px;

}

.section-title p{

    max-width:900px;

    margin:auto;

    color:var(--text-light);

    font-size:1.05rem;

}


/*==============================================================
PARAGRAPH
==============================================================*/

p{

    color:var(--text-light);

}


/*==============================================================
HEADINGS
==============================================================*/

h1,h2,h3,h4,h5{

    color:#222;

}


/*==============================================================
BUTTON
==============================================================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    padding:18px 36px;

    border-radius:100px;

    background:linear-gradient(

    135deg,

    var(--gold),

    var(--gold-light));

    color:white;

    font-weight:600;

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

}

.btn:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow);

}


/*==============================================================
GLASS EFFECT
==============================================================*/

.glass{

    background:rgba(255,255,255,.60);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.8);

}


/*==============================================================
GOLD TEXT
==============================================================*/

.gold{

    color:var(--gold);

}


/*==============================================================
SCROLLBAR
==============================================================*/

::-webkit-scrollbar{

    width:12px;

}

::-webkit-scrollbar-track{

    background:#f4f4f4;

}

::-webkit-scrollbar-thumb{

    background:

    linear-gradient(

    var(--gold),

    var(--gold-light));

    border-radius:20px;

}


/*==============================================================
TEXT SELECTION
==============================================================*/

::selection{

    background:var(--gold);

    color:white;

}


/*==============================================================
ANIMATION
==============================================================*/

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(50px);

    }

    to{

        opacity:1;

        transform:none;

    }

}


/*==============================================================
REVEAL
==============================================================*/

.reveal{

    opacity:0;

    transform:translateY(80px);

    transition:1s;

}

.reveal.active{

    opacity:1;

    transform:none;

}

/*==============================================================
NAVBAR
==============================================================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

    transition:.4s ease;

}

.header.scrolled{

    background:rgba(255,255,255,.82);

    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);

    box-shadow:0 12px 40px rgba(0,0,0,.08);

    border-bottom:1px solid rgba(212,175,55,.15);

}

/*==============================================================
NAVBAR CONTAINER
==============================================================*/

.navbar{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:90px;

}

/*==============================================================
LOGO
==============================================================*/

.logo{

    display:flex;

    align-items:center;

    gap:16px;

}

.logo-circle{

    width:58px;

    height:58px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light)
    );

    color:#fff;

    font-family:'Cormorant Garamond',serif;

    font-size:1.6rem;

    font-weight:700;

    box-shadow:0 10px 30px rgba(212,175,55,.35);

}

.logo-text h2{

    font-size:1.2rem;

    font-weight:700;

    margin-bottom:2px;

}

.logo-text span{

    font-size:.82rem;

    color:var(--text-muted);

    letter-spacing:.12em;

    text-transform:uppercase;

}

/*==============================================================
MENU
==============================================================*/

.nav-menu{

    display:flex;

    align-items:center;

    gap:34px;

}

.nav-menu li{

    position:relative;

}

.nav-menu a{

    position:relative;

    font-size:.95rem;

    font-weight:600;

    color:var(--text);

    transition:.35s;

}

/*==============================================================
MENU HOVER
==============================================================*/

.nav-menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    border-radius:50px;

    background:linear-gradient(
        90deg,
        var(--gold),
        var(--gold-light)
    );

    transition:.35s;

}

.nav-menu a:hover{

    color:var(--gold);

}

.nav-menu a:hover::after{

    width:100%;

}

/*==============================================================
ACTIVE MENU
==============================================================*/

.nav-menu a.active{

    color:var(--gold);

}

.nav-menu a.active::after{

    width:100%;

}

/*==============================================================
CTA BUTTON
==============================================================*/

.nav-action{

    display:flex;

    align-items:center;

    gap:18px;

}

.nav-btn{

    padding:14px 28px;

    border-radius:999px;

    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light)
    );

    color:#fff;

    font-size:.92rem;

    font-weight:600;

    transition:.35s;

    box-shadow:0 10px 30px rgba(212,175,55,.28);

}

.nav-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 16px 40px rgba(212,175,55,.35);

}

/*==============================================================
MOBILE TOGGLE
==============================================================*/

.menu-toggle{

    width:48px;

    height:48px;

    display:none;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    border-radius:14px;

    background:#fff;

    border:1px solid rgba(212,175,55,.18);

    box-shadow:0 8px 24px rgba(0,0,0,.06);

}

.menu-toggle span{

    display:block;

    width:24px;

    height:2px;

    background:var(--text);

    position:relative;

    transition:.35s;

}

.menu-toggle span::before,

.menu-toggle span::after{

    content:"";

    position:absolute;

    left:0;

    width:24px;

    height:2px;

    background:var(--text);

    transition:.35s;

}

.menu-toggle span::before{

    top:-7px;

}

.menu-toggle span::after{

    top:7px;

}

/*==============================================================
TOGGLE ACTIVE
==============================================================*/

.menu-toggle.active span{

    background:transparent;

}

.menu-toggle.active span::before{

    transform:rotate(45deg);

    top:0;

}

.menu-toggle.active span::after{

    transform:rotate(-45deg);

    top:0;

}

/*==============================================================
MOBILE MENU
==============================================================*/

@media(max-width:992px){

    .menu-toggle{

        display:flex;

    }

    .nav-menu{

        position:fixed;

        top:90px;

        right:-100%;

        width:320px;

        height:calc(100vh - 90px);

        background:rgba(255,255,255,.96);

        backdrop-filter:blur(20px);

        -webkit-backdrop-filter:blur(20px);

        display:flex;

        flex-direction:column;

        justify-content:flex-start;

        align-items:flex-start;

        padding:40px;

        gap:28px;

        transition:.45s ease;

        box-shadow:-20px 0 50px rgba(0,0,0,.08);

    }

    .nav-menu.active{

        right:0;

    }

    .nav-action{

        display:none;

    }

}

@media(max-width:576px){

    .navbar{

        height:78px;

    }

    .logo-circle{

        width:50px;

        height:50px;

        font-size:1.4rem;

    }

    .logo-text h2{

        font-size:1rem;

    }

    .logo-text span{

        font-size:.72rem;

    }

}

/*==============================================================
HERO
==============================================================*/

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

    padding-top:120px;

    background:
    radial-gradient(circle at top left,
    rgba(212,175,55,.18),
    transparent 32%),

    radial-gradient(circle at bottom right,
    rgba(232,201,106,.14),
    transparent 38%),

    linear-gradient(
    180deg,
    #ffffff,
    #fffdf9,
    #faf6ea);

}

/*==============================================================
DECORATION
==============================================================*/

.hero::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    right:-220px;

    top:-180px;

    border-radius:50%;

    background:

    radial-gradient(circle,

    rgba(212,175,55,.20),

    transparent 70%);

    filter:blur(20px);

}

.hero::after{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    left:-160px;

    bottom:-160px;

    border-radius:50%;

    background:

    radial-gradient(circle,

    rgba(243,222,154,.35),

    transparent 72%);

}

/*==============================================================
GRID
==============================================================*/

.hero-grid{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:70px;

    align-items:center;

}

/*==============================================================
CONTENT
==============================================================*/

.hero-content{

    position:relative;

    z-index:5;

}

.hero-subtitle{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 22px;

    border-radius:999px;

    background:rgba(212,175,55,.10);

    color:var(--gold);

    font-weight:700;

    letter-spacing:.08em;

    text-transform:uppercase;

    margin-bottom:24px;

}

.hero h1{

    font-family:'Cormorant Garamond',serif;

    font-size:clamp(3.6rem,7vw,6rem);

    line-height:1.05;

    margin-bottom:18px;

}

.hero h1 span{

    color:var(--gold);

}

.typing-text{

    font-size:1.2rem;

    font-weight:600;

    color:#6a6a6a;

    margin-bottom:30px;

    min-height:40px;

}

.hero p{

    max-width:700px;

    font-size:1.08rem;

    color:var(--text-light);

    margin-bottom:40px;

}

/*==============================================================
BUTTONS
==============================================================*/

.hero-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

    margin-bottom:50px;

}

.btn-outline{

    background:#fff;

    color:var(--gold);

    border:1px solid rgba(212,175,55,.30);

}

.btn-outline:hover{

    background:var(--gold);

    color:#fff;

}

/*==============================================================
META
==============================================================*/

.hero-meta{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

}

.meta-item{

    background:rgba(255,255,255,.72);

    backdrop-filter:blur(16px);

    border:1px solid rgba(212,175,55,.16);

    border-radius:18px;

    padding:24px;

    box-shadow:var(--shadow-sm);

}

.meta-item strong{

    display:block;

    color:#222;

    margin-bottom:8px;

    font-size:.95rem;

}

.meta-item span{

    color:var(--text-light);

    font-size:.92rem;

}

/*==============================================================
PHOTO
==============================================================*/

.hero-image{

    display:flex;

    justify-content:center;

    position:relative;

}

.hero-image-wrapper{

    position:relative;

    width:470px;

    max-width:100%;

}

.hero-image-wrapper img{

    width:100%;

    position:relative;

    z-index:3;

    animation:float 6s ease-in-out infinite;

    filter:drop-shadow(0 30px 60px rgba(0,0,0,.18));

}

/*==============================================================
GOLD GLOW
==============================================================*/

.hero-image-wrapper::before{

    content:"";

    position:absolute;

    inset:8%;

    border-radius:50%;

    background:

    radial-gradient(circle,

    rgba(212,175,55,.55),

    transparent 72%);

    filter:blur(40px);

    z-index:1;

}

.hero-image-wrapper::after{

    content:"";

    position:absolute;

    width:115%;

    height:115%;

    left:-7.5%;

    top:-7.5%;

    border-radius:50%;

    border:2px solid rgba(212,175,55,.25);

    animation:rotateRing 20s linear infinite;

}

/*==============================================================
SCROLL INDICATOR
==============================================================*/

.scroll-indicator{

    position:absolute;

    bottom:40px;

    left:50%;

    transform:translateX(-50%);

    text-align:center;

    color:var(--gold);

}

.scroll-indicator span{

    display:block;

    width:2px;

    height:55px;

    margin:auto;

    background:linear-gradient(

    var(--gold),

    transparent);

    animation:scrollMove 2s infinite;

}

.scroll-indicator p{

    margin-top:10px;

    font-size:.82rem;

    letter-spacing:.20em;

    text-transform:uppercase;

}

/*==============================================================
ANIMATION
==============================================================*/

@keyframes rotateRing{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

@keyframes scrollMove{

    0%{

        opacity:0;

        transform:translateY(-10px);

    }

    50%{

        opacity:1;

    }

    100%{

        opacity:0;

        transform:translateY(10px);

    }

}

/*==============================================================
RESPONSIVE
==============================================================*/

@media(max-width:992px){

    .hero-grid{

        grid-template-columns:1fr;

        text-align:center;

    }

    .hero p{

        margin-left:auto;

        margin-right:auto;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-meta{

        grid-template-columns:1fr;

    }

    .hero-image{

        order:-1;

        margin-bottom:30px;

    }

}

@media(max-width:768px){

    .hero{

        padding-top:110px;

    }

    .hero-image-wrapper{

        width:320px;

    }

    .hero h1{

        font-size:3rem;

    }

}

/*==============================================================
ABOUT
==============================================================*/

.about-section{

    position:relative;

    overflow:hidden;

    background:linear-gradient(
        180deg,
        #fffdf9 0%,
        #faf6ec 100%
    );

}

.about-section::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    right:-250px;

    top:-180px;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(212,175,55,.12),
        transparent 70%
    );

}

.about-wrapper{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:80px;

    align-items:start;

}

/*==============================================================
PROFILE CARD
==============================================================*/

.profile-card{

    position:sticky;

    top:120px;

    background:rgba(255,255,255,.78);

    backdrop-filter:blur(18px);

    border:1px solid rgba(212,175,55,.18);

    border-radius:32px;

    overflow:hidden;

    box-shadow:var(--shadow);

}

.profile-card img{

    width:100%;

    display:block;

}

.profile-card-body{

    padding:35px;

}

.profile-card-body h3{

    font-family:'Cormorant Garamond',serif;

    font-size:2rem;

    margin-bottom:8px;

}

.profile-card-body h4{

    color:var(--gold);

    font-size:1rem;

    margin-bottom:25px;

    font-weight:600;

}

.profile-info{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.profile-info li{

    display:flex;

    justify-content:space-between;

    gap:20px;

    border-bottom:1px solid rgba(212,175,55,.12);

    padding-bottom:12px;

}

.profile-info strong{

    color:#222;

    font-weight:600;

}

.profile-info span{

    color:var(--text-light);

    text-align:right;

}

/*==============================================================
BIOGRAPHY
==============================================================*/

.biography-content{

    display:flex;

    flex-direction:column;

    gap:35px;

}

.bio-card{

    background:#fff;

    border-radius:28px;

    padding:45px;

    border:1px solid rgba(212,175,55,.14);

    box-shadow:var(--shadow-sm);

    transition:.35s;

}

.bio-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}

.bio-card h3{

    font-family:'Cormorant Garamond',serif;

    font-size:2.1rem;

    margin-bottom:22px;

}

.bio-card p{

    margin-bottom:22px;

    text-align:justify;

}

.bio-card p:last-child{

    margin-bottom:0;

}

/*==============================================================
HIGHLIGHT BOX
==============================================================*/

.highlight-box{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

    margin-top:25px;

}

.highlight-item{

    background:linear-gradient(
        145deg,
        #ffffff,
        #fdf9ef
    );

    border:1px solid rgba(212,175,55,.14);

    border-radius:24px;

    padding:28px;

    text-align:center;

    transition:.35s;

}

.highlight-item:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

}

.highlight-item h4{

    font-size:2.2rem;

    color:var(--gold);

    margin-bottom:10px;

    font-family:'Cormorant Garamond',serif;

}

.highlight-item p{

    font-size:.95rem;

    margin:0;

}

/*==============================================================
QUOTE
==============================================================*/

.bio-quote{

    margin-top:35px;

    padding:40px;

    border-left:6px solid var(--gold);

    background:#fffef9;

    border-radius:0 24px 24px 0;

}

.bio-quote blockquote{

    font-family:'Cormorant Garamond',serif;

    font-size:2rem;

    line-height:1.5;

    color:#2d2d2d;

}

.bio-quote cite{

    display:block;

    margin-top:20px;

    color:var(--gold);

    font-style:normal;

    font-weight:600;

    letter-spacing:.08em;

}

/*==============================================================
TIMELINE
==============================================================*/

.timeline{

    position:relative;

    margin-top:70px;

    padding-left:50px;

}

.timeline::before{

    content:"";

    position:absolute;

    left:12px;

    top:0;

    bottom:0;

    width:2px;

    background:linear-gradient(
        var(--gold),
        rgba(212,175,55,.08)
    );

}

.timeline-item{

    position:relative;

    margin-bottom:45px;

}

.timeline-item:last-child{

    margin-bottom:0;

}

.timeline-item::before{

    content:"";

    position:absolute;

    left:-47px;

    top:8px;

    width:18px;

    height:18px;

    border-radius:50%;

    background:var(--gold);

    box-shadow:0 0 0 8px rgba(212,175,55,.12);

}

.timeline-year{

    display:inline-block;

    padding:8px 18px;

    border-radius:999px;

    background:rgba(212,175,55,.10);

    color:var(--gold);

    font-weight:700;

    margin-bottom:16px;

}

.timeline-item h3{

    margin-bottom:15px;

    font-size:1.5rem;

}

.timeline-item p{

    margin:0;

}

/*==============================================================
RESPONSIVE
==============================================================*/

@media(max-width:1100px){

    .about-wrapper{

        grid-template-columns:1fr;

    }

    .profile-card{

        position:relative;

        top:auto;

    }

}

@media(max-width:768px){

    .highlight-box{

        grid-template-columns:1fr;

    }

    .bio-card{

        padding:30px;

    }

    .bio-quote{

        padding:30px;

    }

    .bio-quote blockquote{

        font-size:1.6rem;

    }

    .timeline{

        padding-left:35px;

    }

}

/*==============================================================
RESEARCH AREAS
==============================================================*/

.research-section{

    position:relative;

    background:linear-gradient(
        180deg,
        #faf6ea 0%,
        #fffdf8 100%
    );

    overflow:hidden;

}

.research-section::before{

    content:"";

    position:absolute;

    width:900px;

    height:900px;

    right:-350px;

    top:-250px;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(212,175,55,.10),
        transparent 70%
    );

    pointer-events:none;

}

.research-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:32px;

}

/*==============================================================
CARD
==============================================================*/

.research-card{

    position:relative;

    background:rgba(255,255,255,.82);

    backdrop-filter:blur(18px);

    border:1px solid rgba(212,175,55,.14);

    border-radius:28px;

    padding:42px;

    overflow:hidden;

    transition:.45s ease;

    box-shadow:var(--shadow-sm);

}

.research-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow);

    border-color:rgba(212,175,55,.40);

}

/*==============================================================
TOP DECORATION
==============================================================*/

.research-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(
        90deg,
        var(--gold),
        var(--gold-light)
    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.45s;

}

.research-card:hover::before{

    transform:scaleX(1);

}

/*==============================================================
NUMBER
==============================================================*/

.research-number{

    position:absolute;

    right:25px;

    top:18px;

    font-family:'Cormorant Garamond',serif;

    font-size:4.5rem;

    font-weight:700;

    color:rgba(212,175,55,.08);

    user-select:none;

}

/*==============================================================
ICON
==============================================================*/

.research-icon{

    width:78px;

    height:78px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light)
    );

    color:#fff;

    font-size:2rem;

    margin-bottom:28px;

    box-shadow:

    0 16px 40px rgba(212,175,55,.25);

}

/*==============================================================
TITLE
==============================================================*/

.research-card h3{

    font-family:'Cormorant Garamond',serif;

    font-size:2rem;

    margin-bottom:20px;

    line-height:1.2;

}

/*==============================================================
TEXT
==============================================================*/

.research-card p{

    margin-bottom:25px;

    text-align:justify;

}

/*==============================================================
TAGS
==============================================================*/

.research-tags{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

}

.research-tags span{

    padding:8px 16px;

    border-radius:999px;

    background:rgba(212,175,55,.08);

    color:var(--gold);

    font-size:.82rem;

    font-weight:600;

}

/*==============================================================
READ MORE
==============================================================*/

.research-link{

    margin-top:28px;

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--gold);

    font-weight:700;

}

.research-link:hover{

    gap:16px;

}

/*==============================================================
BOTTOM PANEL
==============================================================*/

.research-summary{

    margin-top:90px;

    padding:60px;

    border-radius:32px;

    background:

    linear-gradient(
        135deg,
        rgba(255,255,255,.94),
        rgba(255,250,240,.96)
    );

    border:1px solid rgba(212,175,55,.14);

    box-shadow:var(--shadow);

}

.research-summary h3{

    text-align:center;

    font-family:'Cormorant Garamond',serif;

    font-size:3rem;

    margin-bottom:25px;

}

.research-summary p{

    max-width:950px;

    margin:auto;

    text-align:center;

}

/*==============================================================
RESPONSIVE
==============================================================*/

@media(max-width:1100px){

    .research-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .research-grid{

        grid-template-columns:1fr;

    }

    .research-summary{

        padding:35px;

    }

    .research-summary h3{

        font-size:2.3rem;

    }

}

/*==============================================================
RESEARCH PHILOSOPHY
==============================================================*/

.philosophy-section{

    position:relative;

    overflow:hidden;

    background:
    linear-gradient(
    180deg,
    #fffefb 0%,
    #faf5e8 100%);

}

.philosophy-section::before{

    content:"";

    position:absolute;

    width:850px;

    height:850px;

    left:-300px;

    top:-250px;

    border-radius:50%;

    background:

    radial-gradient(circle,
    rgba(212,175,55,.08),
    transparent 70%);

    pointer-events:none;

}

.philosophy-wrapper{

    display:grid;

    grid-template-columns:380px 1fr;

    gap:60px;

    align-items:start;

}

/*==============================================================
QUOTE
==============================================================*/

.philosophy-quote{

    position:sticky;

    top:120px;

    padding:45px;

    border-radius:30px;

    background:
    linear-gradient(
    145deg,
    rgba(255,255,255,.95),
    rgba(255,250,242,.90));

    border:1px solid rgba(212,175,55,.18);

    box-shadow:var(--shadow);

}

.philosophy-quote blockquote{

    font-family:'Cormorant Garamond',serif;

    font-size:2.15rem;

    line-height:1.45;

    color:#2d2d2d;

    position:relative;

}

.philosophy-quote blockquote::before{

    content:"“";

    position:absolute;

    left:-18px;

    top:-25px;

    font-size:5rem;

    color:rgba(212,175,55,.20);

}

/*==============================================================
CONTENT
==============================================================*/

.philosophy-content{

    display:flex;

    flex-direction:column;

    gap:30px;

}

.philosophy-content p{

    background:#fff;

    padding:35px;

    border-radius:24px;

    border:1px solid rgba(212,175,55,.12);

    box-shadow:var(--shadow-sm);

    text-align:justify;

    transition:.35s;

}

.philosophy-content p:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow);

    border-color:rgba(212,175,55,.30);

}

/*==============================================================
RESPONSIVE
==============================================================*/

@media(max-width:1100px){

    .philosophy-wrapper{

        grid-template-columns:1fr;

    }

    .philosophy-quote{

        position:relative;

        top:auto;

    }

}

/*==============================================================
RESEARCH STATISTICS
==============================================================*/

.statistics-section{

    position:relative;

    overflow:hidden;

    background:linear-gradient(
        180deg,
        #faf5e8 0%,
        #fffdf9 100%
    );

}

.statistics-section::before{

    content:"";

    position:absolute;

    top:-250px;

    right:-280px;

    width:850px;

    height:850px;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(212,175,55,.10),
        transparent 72%
    );

    pointer-events:none;

}

/*==============================================================
GRID
==============================================================*/

.statistics-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/*==============================================================
CARD
==============================================================*/

.stat-card{

    position:relative;

    overflow:hidden;

    background:rgba(255,255,255,.88);

    backdrop-filter:blur(16px);

    border:1px solid rgba(212,175,55,.14);

    border-radius:28px;

    padding:40px;

    text-align:center;

    transition:.45s;

    box-shadow:var(--shadow-sm);

}

.stat-card:hover{

    transform:translateY(-10px);

    border-color:rgba(212,175,55,.35);

    box-shadow:var(--shadow);

}

.stat-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:linear-gradient(
        90deg,
        var(--gold),
        var(--gold-light)
    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.45s;

}

.stat-card:hover::before{

    transform:scaleX(1);

}

/*==============================================================
ICON
==============================================================*/

.stat-icon{

    width:82px;

    height:82px;

    margin:0 auto 26px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light)
    );

    color:#fff;

    font-size:2rem;

    box-shadow:0 18px 40px rgba(212,175,55,.25);

}

/*==============================================================
COUNTER
==============================================================*/

.counter{

    font-family:'Cormorant Garamond',serif;

    font-size:4rem;

    font-weight:700;

    color:var(--gold);

    margin-bottom:10px;

    line-height:1;

}

.stat-card h4{

    font-size:1.2rem;

    margin-bottom:18px;

    color:#222;

}

.stat-card p{

    margin:0;

    text-align:center;

}

/*==============================================================
ACHIEVEMENT PANEL
==============================================================*/

.achievement-panel{

    margin-top:90px;

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:40px;

    padding:60px;

    border-radius:32px;

    background:linear-gradient(
        145deg,
        rgba(255,255,255,.96),
        rgba(255,250,242,.94)
    );

    border:1px solid rgba(212,175,55,.16);

    box-shadow:var(--shadow);

}

.achievement-left h3{

    font-family:'Cormorant Garamond',serif;

    font-size:2.8rem;

    margin-bottom:20px;

}

.achievement-left p{

    text-align:justify;

}

.achievement-right ul{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.achievement-right li{

    padding:16px 18px;

    border-radius:16px;

    background:rgba(212,175,55,.08);

    color:#444;

    font-weight:600;

    transition:.35s;

}

.achievement-right li:hover{

    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light)
    );

    color:#fff;

    transform:translateY(-4px);

}

/*==============================================================
RESPONSIVE
==============================================================*/

@media(max-width:1100px){

    .statistics-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .achievement-panel{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .statistics-grid{

        grid-template-columns:1fr;

    }

    .achievement-panel{

        padding:35px;

    }

    .achievement-left h3{

        font-size:2.2rem;

    }

    .achievement-right ul{

        grid-template-columns:1fr;

    }

}

/*==============================================================
CURRENT RESEARCH FOCUS
==============================================================*/

.current-focus-section{

    position:relative;

    overflow:hidden;

    background:linear-gradient(
        180deg,
        #fffdf9 0%,
        #f8f4e8 100%
    );

}

.current-focus-section::before{

    content:"";

    position:absolute;

    left:-280px;

    bottom:-220px;

    width:800px;

    height:800px;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(212,175,55,.08),
        transparent 72%
    );

    pointer-events:none;

}

/*==============================================================
GRID
==============================================================*/

.focus-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/*==============================================================
CARD
==============================================================*/

.focus-card{

    position:relative;

    overflow:hidden;

    background:rgba(255,255,255,.90);

    backdrop-filter:blur(18px);

    border:1px solid rgba(212,175,55,.14);

    border-radius:28px;

    padding:42px;

    transition:.45s ease;

    box-shadow:var(--shadow-sm);

}

.focus-card:hover{

    transform:translateY(-10px);

    border-color:rgba(212,175,55,.35);

    box-shadow:var(--shadow);

}

/*==============================================================
LEFT GOLD LINE
==============================================================*/

.focus-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:5px;

    height:0;

    background:linear-gradient(
        180deg,
        var(--gold),
        var(--gold-light)
    );

    transition:.45s;

}

.focus-card:hover::before{

    height:100%;

}

/*==============================================================
NUMBER
==============================================================*/

.focus-number{

    position:absolute;

    right:24px;

    top:12px;

    font-family:'Cormorant Garamond',serif;

    font-size:5rem;

    font-weight:700;

    color:rgba(212,175,55,.08);

    line-height:1;

    user-select:none;

}

/*==============================================================
TITLE
==============================================================*/

.focus-card h3{

    font-family:'Cormorant Garamond',serif;

    font-size:2rem;

    line-height:1.2;

    margin-bottom:20px;

    position:relative;

    z-index:2;

}

.focus-card p{

    position:relative;

    z-index:2;

    text-align:justify;

}

/*==============================================================
VISION PANEL
==============================================================*/

.research-vision{

    margin-top:90px;

    display:grid;

    grid-template-columns:420px 1fr;

    gap:50px;

    align-items:center;

    padding:60px;

    border-radius:34px;

    background:linear-gradient(
        145deg,
        rgba(255,255,255,.96),
        rgba(255,249,240,.94)
    );

    border:1px solid rgba(212,175,55,.16);

    box-shadow:var(--shadow);

}

.vision-left span{

    display:inline-block;

    margin-bottom:16px;

    padding:10px 22px;

    border-radius:999px;

    background:rgba(212,175,55,.10);

    color:var(--gold);

    font-weight:700;

    letter-spacing:.08em;

    text-transform:uppercase;

}

.vision-left h3{

    font-family:'Cormorant Garamond',serif;

    font-size:3rem;

    line-height:1.15;

}

.vision-right p{

    text-align:justify;

    font-size:1.05rem;

}

/*==============================================================
RESPONSIVE
==============================================================*/

@media(max-width:1100px){

    .focus-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .research-vision{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .focus-grid{

        grid-template-columns:1fr;

    }

    .research-vision{

        padding:35px;

    }

    .vision-left h3{

        font-size:2.3rem;

    }

}

/*==============================================================
SELECTED PUBLICATIONS
==============================================================*/

.publications-section{

    position:relative;

    overflow:hidden;

    background:linear-gradient(
        180deg,
        #f8f4e8 0%,
        #fffdfb 100%
    );

}

.publications-section::before{

    content:"";

    position:absolute;

    top:-220px;

    right:-260px;

    width:780px;

    height:780px;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(212,175,55,.08),
        transparent 72%
    );

    pointer-events:none;

}

/*==============================================================
PUBLICATION LIST
==============================================================*/

.publication-list{

    display:flex;

    flex-direction:column;

    gap:28px;

}

/*==============================================================
PUBLICATION ITEM
==============================================================*/

.publication-item{

    display:grid;

    grid-template-columns:140px 1fr;

    gap:35px;

    align-items:flex-start;

    padding:36px;

    border-radius:28px;

    background:rgba(255,255,255,.90);

    backdrop-filter:blur(16px);

    border:1px solid rgba(212,175,55,.14);

    box-shadow:var(--shadow-sm);

    transition:.4s ease;

    position:relative;

    overflow:hidden;

}

.publication-item:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

    border-color:rgba(212,175,55,.35);

}

.publication-item::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:6px;

    height:100%;

    background:linear-gradient(
        180deg,
        var(--gold),
        var(--gold-light)
    );

    transform:scaleY(0);

    transform-origin:top;

    transition:.4s;

}

.publication-item:hover::before{

    transform:scaleY(1);

}

/*==============================================================
YEAR
==============================================================*/

.publication-year{

    display:flex;

    align-items:center;

    justify-content:center;

    min-height:90px;

    border-radius:22px;

    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light)
    );

    color:#fff;

    font-family:'Cormorant Garamond',serif;

    font-size:2.4rem;

    font-weight:700;

    box-shadow:0 18px 40px rgba(212,175,55,.22);

}

/*==============================================================
BODY
==============================================================*/

.publication-body{

    display:flex;

    flex-direction:column;

}

.publication-category{

    align-self:flex-start;

    padding:8px 18px;

    border-radius:999px;

    background:rgba(212,175,55,.10);

    color:var(--gold);

    font-size:.82rem;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.08em;

    margin-bottom:18px;

}

.publication-body h3{

    font-family:'Cormorant Garamond',serif;

    font-size:2rem;

    line-height:1.2;

    margin-bottom:18px;

}

.publication-body p{

    text-align:justify;

    margin-bottom:24px;

}

/*==============================================================
LINK
==============================================================*/

.publication-body a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--gold);

    font-weight:700;

    transition:.35s;

}

.publication-body a:hover{

    gap:16px;

}

/*==============================================================
NOTE
==============================================================*/

.publication-note{

    margin-top:90px;

    padding:60px;

    border-radius:34px;

    background:linear-gradient(
        145deg,
        rgba(255,255,255,.96),
        rgba(255,250,242,.94)
    );

    border:1px solid rgba(212,175,55,.16);

    text-align:center;

    box-shadow:var(--shadow);

}

.publication-note h3{

    font-family:'Cormorant Garamond',serif;

    font-size:3rem;

    margin-bottom:22px;

}

.publication-note p{

    max-width:900px;

    margin:0 auto;

}

/*==============================================================
RESPONSIVE
==============================================================*/

@media(max-width:768px){

    .publication-item{

        grid-template-columns:1fr;

    }

    .publication-year{

        width:120px;

        min-height:70px;

    }

    .publication-note{

        padding:35px;

    }

    .publication-note h3{

        font-size:2.3rem;

    }

}

/*==============================================================
RESEARCH IMPACT
==============================================================*/

.impact-section{

    position:relative;

    overflow:hidden;

    background:linear-gradient(
        180deg,
        #fffdfb 0%,
        #f8f3e5 100%
    );

}

.impact-section::before{

    content:"";

    position:absolute;

    left:-250px;

    top:-220px;

    width:760px;

    height:760px;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(212,175,55,.08),
        transparent 72%
    );

    pointer-events:none;

}

/*==============================================================
IMPACT GRID
==============================================================*/

.impact-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/*==============================================================
CARD
==============================================================*/

.impact-card{

    position:relative;

    padding:42px;

    border-radius:30px;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(16px);

    border:1px solid rgba(212,175,55,.14);

    box-shadow:var(--shadow-sm);

    transition:.45s ease;

    overflow:hidden;

}

.impact-card:hover{

    transform:translateY(-10px);

    border-color:rgba(212,175,55,.35);

    box-shadow:var(--shadow);

}

.impact-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(
        90deg,
        var(--gold),
        var(--gold-light)
    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.45s;

}

.impact-card:hover::before{

    transform:scaleX(1);

}

/*==============================================================
ICON
==============================================================*/

.impact-icon{

    width:82px;

    height:82px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light)
    );

    color:#fff;

    font-size:2rem;

    margin-bottom:28px;

    box-shadow:0 18px 42px rgba(212,175,55,.24);

}

.impact-card h3{

    font-family:'Cormorant Garamond',serif;

    font-size:2rem;

    margin-bottom:18px;

}

.impact-card p{

    text-align:justify;

}

/*==============================================================
QUOTE
==============================================================*/

.impact-quote{

    margin:90px auto;

    max-width:980px;

    text-align:center;

    position:relative;

    padding:70px 60px;

    border-radius:36px;

    background:linear-gradient(
        145deg,
        rgba(255,255,255,.96),
        rgba(255,250,242,.94)
    );

    border:1px solid rgba(212,175,55,.16);

    box-shadow:var(--shadow);

}

.quote-mark{

    position:absolute;

    top:-20px;

    left:50%;

    transform:translateX(-50%);

    font-family:'Cormorant Garamond',serif;

    font-size:8rem;

    color:rgba(212,175,55,.18);

    line-height:1;

}

.impact-quote blockquote{

    font-family:'Cormorant Garamond',serif;

    font-size:2.5rem;

    line-height:1.45;

    color:#2b2b2b;

}

.impact-quote p{

    margin-top:24px;

    color:var(--gold);

    font-weight:700;

    letter-spacing:.08em;

    text-transform:uppercase;

}

/*==============================================================
PRINCIPLES
==============================================================*/

.impact-principles{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.principle{

    padding:36px;

    text-align:center;

    border-radius:28px;

    background:#fff;

    border:1px solid rgba(212,175,55,.14);

    box-shadow:var(--shadow-sm);

    transition:.35s;

}

.principle:hover{

    transform:translateY(-8px);

    border-color:rgba(212,175,55,.35);

    box-shadow:var(--shadow);

}

.principle h3{

    font-family:'Cormorant Garamond',serif;

    font-size:2rem;

    color:var(--gold);

    margin-bottom:16px;

}

.principle p{

    text-align:center;

}

/*==============================================================
RESPONSIVE
==============================================================*/

@media(max-width:1100px){

    .impact-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .impact-principles{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .impact-grid{

        grid-template-columns:1fr;

    }

    .impact-quote{

        padding:40px 30px;

    }

    .impact-quote blockquote{

        font-size:1.9rem;

    }

    .quote-mark{

        font-size:6rem;

    }

}

/*==============================================================
CONNECT & COLLABORATE
==============================================================*/

.connect-section{

    position:relative;

    overflow:hidden;

    background:linear-gradient(
        180deg,
        #f8f3e5 0%,
        #fffefb 100%
    );

}

.connect-section::before{

    content:"";

    position:absolute;

    right:-260px;

    bottom:-220px;

    width:760px;

    height:760px;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(212,175,55,.08),
        transparent 72%
    );

    pointer-events:none;

}

/*==============================================================
CONNECT GRID
==============================================================*/

.connect-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

/*==============================================================
LINK CARD
==============================================================*/

.connect-card{

    position:relative;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(16px);

    border:1px solid rgba(212,175,55,.14);

    border-radius:28px;

    padding:40px;

    text-align:center;

    overflow:hidden;

    transition:.45s ease;

    box-shadow:var(--shadow-sm);

}

.connect-card:hover{

    transform:translateY(-10px);

    border-color:rgba(212,175,55,.35);

    box-shadow:var(--shadow);

}

.connect-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        180deg,
        rgba(212,175,55,.05),
        transparent
    );

    opacity:0;

    transition:.35s;

}

.connect-card:hover::before{

    opacity:1;

}

/*==============================================================
ICON
==============================================================*/

.connect-icon{

    width:84px;

    height:84px;

    margin:0 auto 28px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light)
    );

    color:#fff;

    font-size:2rem;

    box-shadow:0 18px 42px rgba(212,175,55,.24);

}

.connect-card h3{

    font-family:'Cormorant Garamond',serif;

    font-size:2rem;

    margin-bottom:18px;

}

.connect-card p{

    margin-bottom:28px;

    text-align:center;

}

.connect-card a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 30px;

    border-radius:999px;

    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light)
    );

    color:#fff;

    font-weight:600;

    transition:.35s;

}

.connect-card a:hover{

    transform:translateY(-3px);

}

/*==============================================================
COLLABORATION PANEL
==============================================================*/

.collaboration-panel{

    margin-top:90px;

    padding:60px;

    border-radius:34px;

    background:linear-gradient(
        145deg,
        rgba(255,255,255,.96),
        rgba(255,249,240,.94)
    );

    border:1px solid rgba(212,175,55,.16);

    box-shadow:var(--shadow);

}

.collaboration-panel h3{

    text-align:center;

    font-family:'Cormorant Garamond',serif;

    font-size:3rem;

    margin-bottom:24px;

}

.collaboration-panel p{

    max-width:920px;

    margin:0 auto 40px;

    text-align:center;

}

/*==============================================================
TAG CLOUD
==============================================================*/

.collaboration-tags{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:16px;

}

.collaboration-tags span{

    padding:12px 22px;

    border-radius:999px;

    background:rgba(212,175,55,.08);

    color:var(--gold);

    font-weight:600;

    transition:.35s;

}

.collaboration-tags span:hover{

    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light)
    );

    color:#fff;

    transform:translateY(-3px);

}

/*==============================================================
FINAL CTA
==============================================================*/

.final-cta{

    margin-top:90px;

    text-align:center;

}

.final-cta h2{

    font-family:'Cormorant Garamond',serif;

    font-size:3.6rem;

    margin-bottom:22px;

}

.final-cta p{

    max-width:850px;

    margin:0 auto 40px;

}

.final-cta .btn{

    min-width:240px;

}

/*==============================================================
RESPONSIVE
==============================================================*/

@media(max-width:1100px){

    .connect-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .connect-grid{

        grid-template-columns:1fr;

    }

    .collaboration-panel{

        padding:35px;

    }

    .collaboration-panel h3{

        font-size:2.3rem;

    }

    .final-cta h2{

        font-size:2.6rem;

    }

}

/*==============================================================
FEATURED ORGANISATIONS
==============================================================*/

.organisations-section{

    position:relative;

    overflow:hidden;

    background:linear-gradient(
        180deg,
        #fffefb 0%,
        #f9f5eb 100%
    );

    padding:120px 0;

}

.organisations-section::before{

    content:"";

    position:absolute;

    top:-260px;

    left:-260px;

    width:720px;

    height:720px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(212,175,55,.08),
    transparent 72%);

}

/*==============================================================
GRID
==============================================================*/

.organisations-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:28px;

    margin-top:70px;

}

/*==============================================================
CARD
==============================================================*/

.organisation-card{

    position:relative;

    padding:35px;

    background:rgba(255,255,255,.90);

    border-radius:24px;

    border:1px solid rgba(212,175,55,.12);

    backdrop-filter:blur(14px);

    text-align:center;

    transition:.4s;

    box-shadow:var(--shadow-sm);

}

.organisation-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow);

    border-color:rgba(212,175,55,.30);

}

.organisation-card img{

    width:90px;

    height:90px;

    object-fit:contain;

    margin:auto;

    margin-bottom:25px;

    transition:.4s;

}

.organisation-card:hover img{

    transform:scale(1.08);

}

.organisation-card h4{

    font-size:1.1rem;

    margin-bottom:10px;

    color:#222;

}

.organisation-card p{

    font-size:.92rem;

    color:var(--text-light);

}

/*==============================================================
RESPONSIVE
==============================================================*/

@media(max-width:1200px){

    .organisations-grid{

        grid-template-columns:repeat(3,1fr);

    }

}

@media(max-width:768px){

    .organisations-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:480px){

    .organisations-grid{

        grid-template-columns:1fr;

    }

}


/*==============================================================
FOOTER
==============================================================*/

.footer{

    position:relative;

    overflow:hidden;

    background:#171717;

    color:#ffffff;

    padding-top:100px;

}

.footer::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at top,

    rgba(212,175,55,.12),

    transparent 55%);

    pointer-events:none;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:60px;

}

.footer h3{

    color:#ffffff;

    font-family:'Cormorant Garamond',serif;

    font-size:2rem;

    margin-bottom:20px;

}

.footer p{

    color:#d6d6d6;

}

.footer ul{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.footer ul a{

    color:#d6d6d6;

    transition:.3s;

}

.footer ul a:hover{

    color:var(--gold);

    padding-left:8px;

}

/*==============================================================
SOCIAL
==============================================================*/

.footer-social{

    display:flex;

    gap:15px;

    margin-top:30px;

}

.footer-social a{

    width:46px;

    height:46px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#fff;

    transition:.35s;

}

.footer-social a:hover{

    background:var(--gold);

    transform:translateY(-4px);

}

/*==============================================================
COPYRIGHT
==============================================================*/

.footer-bottom{

    margin-top:80px;

    padding:30px 0;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.08);

}

.footer-bottom p{

    color:#aaaaaa;

    font-size:.9rem;

}


/*==============================================================
BACK TO TOP
==============================================================*/

.back-to-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:60px;

    height:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light)
    );

    color:#fff;

    font-size:1.3rem;

    box-shadow:0 18px 40px rgba(212,175,55,.28);

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:.4s;

    z-index:999;

}

.back-to-top.show{

    opacity:1;

    visibility:visible;

    transform:none;

}

.back-to-top:hover{

    transform:translateY(-6px);

}

#particles-canvas{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    pointer-events:none;

    z-index:0;

}


.mouse-glow{

    position:fixed;

    width:250px;

    height:250px;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(212,175,55,.18),
        transparent 70%
    );

    pointer-events:none;

    transform:translate(-50%,-50%);

    z-index:9999;

    mix-blend-mode:screen;

}

/*==============================================================
SCROLL PROGRESS
==============================================================*/

.scroll-progress{

    position:fixed;

    top:0;

    left:0;

    height:4px;

    width:0;

    background:linear-gradient(
        90deg,
        #d4af37,
        #f6e27a
    );

    z-index:99999;

}


/*==============================================================
PRELOADER
==============================================================*/

.preloader{

    position:fixed;

    inset:0;

    background:#fffdf8;

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:999999;

    transition:.8s;

}


.preloader.loaded{

    opacity:0;

    visibility:hidden;

}


.loader-circle{

    width:70px;

    height:70px;

    border-radius:50%;

    border:4px solid rgba(212,175,55,.15);

    border-top-color:#d4af37;

    animation:spin 1s linear infinite;

}


@keyframes spin{

    to{

        transform:rotate(360deg);

    }

}


/*==============================================================
IMAGE REVEAL
==============================================================*/

.image-reveal{

    opacity:0;

    transform:translateY(30px);

    transition:.8s ease;

}


.image-reveal.visible{

    opacity:1;

    transform:none;

}


/*==============================================================
  LUXURY ANIMATED FOOTER STYLING
==============================================================*/
.footer-luxury {
    position: relative;
    background: #0b0c10;
    color: #c5c6c7;
    padding: 100px 0 40px 0;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/* Background Glowing Orbs Animation */
.footer-bg-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.15;
}

.orb-1 {
    width: 450px;
    height: 450px;
    background: var(--gold, #D4AF37);
    top: -100px;
    left: -100px;
    animation: orbFloat1 12s ease-in-out infinite alternate;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: #45a29e;
    bottom: -150px;
    right: -100px;
    animation: orbFloat2 15s ease-in-out infinite alternate;
}

@keyframes orbFloat1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, 80px) scale(1.15); }
}

@keyframes orbFloat2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-80px, -60px) scale(1.2); }
}

/* Interactive Floating JS Particles */
.footer-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.footer-particle {
    position: absolute;
    background: var(--gold, #D4AF37);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleUp linear infinite;
}

@keyframes particleUp {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    50% { opacity: 0.6; }
    100% { transform: translateY(-50px) scale(1); opacity: 0; }
}

/* Container */
.footer-container {
    position: relative;
    z-index: 5;
    width: min(92%, 1280px);
    margin: auto;
}

/* Main Grid Layout */
.footer-top-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 70px;
}

/* Brand Column */
.footer-brand-col h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-brand-col h2 span {
    color: var(--gold, #D4AF37);
}

.footer-logo-badge {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold, #D4AF37), #E8C96A);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b0c10;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 22px;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 0 35px rgba(212, 175, 55, 0.7); transform: scale(1.05); }
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #a0a5ac;
    margin-bottom: 25px;
}

/* Social & Icon Links */
.footer-social-links {
    display: flex;
    gap: 15px;
}

.footer-social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold, #D4AF37);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.footer-social-links a svg {
    width: 18px;
    height: 18px;
}

.footer-social-links a:hover {
    background: var(--gold, #D4AF37);
    color: #0b0c10;
    transform: translateY(-5px) rotate(8deg);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    border-color: var(--gold, #D4AF37);
}

/* Footer Link Columns */
.footer-links-col h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    color: #ffffff;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links-col h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background: var(--gold, #D4AF37);
    border-radius: 2px;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col ul li a, 
.footer-disciplines li {
    font-size: 0.92rem;
    color: #a0a5ac;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links-col ul li a span {
    color: var(--gold, #D4AF37);
    transition: transform 0.3s ease;
}

.footer-links-col ul li a:hover {
    color: var(--gold, #D4AF37);
    transform: translateX(6px);
}

.footer-links-col ul li a:hover span {
    transform: translateX(4px);
}

.footer-disciplines li {
    padding: 6px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
}

.footer-disciplines li:last-child {
    border-bottom: none;
}

/* Interactive Divider */
.footer-interactive-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.divider-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.divider-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(11, 12, 16, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold, #D4AF37);
    font-size: 1rem;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
    animation: iconSpin 10s linear infinite;
}

@keyframes iconSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Bottom Row */
.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    color: #8c929b;
}

.footer-motto span {
    color: var(--gold, #D4AF37);
    margin: 0 4px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-top-row {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-top-row {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .footer-bottom-row {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/*==============================================================
  LUXURY TIMELINE ACADEMIC JOURNEY STYLING
==============================================================*/
.academic-journey {
    position: relative;
    background: #0b0c10;
    color: #c5c6c7;
    padding: 100px 0;
    overflow: hidden;
}

.academic-journey .section-title {
    margin-bottom: 70px;
    text-align: center;
}

.academic-journey .section-subtitle {
    color: var(--gold, #D4AF37);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
}

.academic-journey .section-title h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.academic-journey .section-desc {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: #a0a5ac;
    line-height: 1.7;
}

/* Timeline Wrapper */
.luxury-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 40px;
}

/* Vertical Center Line */
.luxury-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold, #D4AF37), rgba(212, 175, 55, 0.1));
}

/* Timeline Item Block */
.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Timeline Dot / Indicator */
.timeline-dot {
    position: absolute;
    left: -33px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #0b0c10;
    border: 3px solid var(--gold, #D4AF37);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    background: var(--gold, #D4AF37);
    transform: scale(1.3);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.9);
}

/* Date / Phase Tag */
.timeline-date {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold, #D4AF37);
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* Content Box Card */
.timeline-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid var(--gold, #D4AF37);
    padding: 30px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.timeline-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 5px;
    font-weight: 600;
}

.timeline-content h4 {
    font-size: 1rem;
    color: #d0d2d6;
    margin-bottom: 12px;
    font-weight: 500;
}

.timeline-content .specialisation {
    font-size: 0.9rem;
    color: var(--gold, #D4AF37);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-text {
    font-size: 0.98rem;
    color: #a0a5ac;
    line-height: 1.8;
}

.timeline-text strong {
    color: #ffffff;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .luxury-timeline {
        padding-left: 25px;
    }
    .luxury-timeline::before {
        left: 10px;
    }
    .timeline-dot {
        left: -28px;
    }
    .timeline-content {
        padding: 20px;
    }
}

/*==============================================================
  ECOSYSTEM SYNERGY & DARK GOLD LUXURY STYLING
==============================================================*/
.ecosystem-synergy-luxury {
    position: relative;
    background: #08090c;
    color: #c5c6c7;
    padding: 110px 0;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.ecosystem-synergy-luxury .section-title {
    margin-bottom: 60px;
    text-align: center;
}

.ecosystem-synergy-luxury .section-subtitle {
    color: var(--gold, #D4AF37);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.ecosystem-synergy-luxury .section-title h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.2vw, 2.7rem);
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.ecosystem-synergy-luxury .section-desc {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.02rem;
    color: #9da3af;
    line-height: 1.7;
}

/* 3-Column Grid Layout */
.synergy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

/* Synergy Card Styling */
.synergy-card {
    position: relative;
    background: linear-gradient(145deg, rgba(18, 20, 26, 0.9), rgba(11, 12, 16, 0.95));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.synergy-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 175, 55, 0.1);
}

/* Inner Glow Effect */
.card-glow-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

/* Card Icon Badge */
.card-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold, #D4AF37);
    margin-bottom: 22px;
}

.card-icon-badge svg {
    width: 24px;
    height: 24px;
}

.synergy-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.synergy-card p {
    font-size: 0.95rem;
    color: #9da3af;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Correspondence & Email Specifics */
.base-location {
    font-size: 0.98rem;
    color: #d1d5db;
    margin-bottom: 20px;
}

.email-box {
    background: rgba(0, 0, 0, 0.4);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.email-box span {
    display: block;
    font-size: 0.78rem;
    color: #8c929b;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.email-link {
    font-size: 0.9rem;
    color: var(--gold, #D4AF37);
    font-weight: 600;
    word-break: break-all;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.active-ventures-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.active-badge {
    font-size: 0.78rem;
    font-weight: 600;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold, #D4AF37);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 5px 10px;
    border-radius: 4px;
}

/* Theory Card Highlights */
.theory-highlights {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
    font-size: 0.88rem;
    color: #d1d5db;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

/* Gallery Card Specifics */
.market-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 15px;
}

.img-wrapper {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    height: 110px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.85) contrast(1.1);
}

.img-wrapper:hover img {
    transform: scale(1.1);
    filter: brightness(1) contrast(1.15);
}

.img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #e5e7eb;
    font-size: 0.7rem;
    padding: 10px 6px 4px 6px;
    text-align: center;
    font-weight: 500;
}

.gallery-desc {
    font-size: 0.9rem;
    color: #9da3af;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .synergy-grid {
        grid-template-columns: 1fr;
        max-width: 650px;
        margin: 0 auto;
    }
}