﻿@import url('https://fonts.googleapis.com/css2?family=Lora:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

/*=============================
        HEADER
==============================*/

:root{

    --primary:#5d2c1e;
    --secondary:#693d30;
    --dark:#222222;
    --text:#656565;
    --white:#ffffff;
    --bg:#FBFAF7;
    --border:#ECE6DE;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Manrope',sans-serif;
    background:var(--bg);
    color:var(--text);
    padding:0;
}

.container{
    width:90%;
    max-width:1380px;
    margin:auto;
}
.title h2{
    font-family: 'Cormorant Garamond',serif;
  font-size: 48px;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 40px;
  text-align:center;
}

/*=============================
        HEADER
==============================*/

.header{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    transition:.4s ease;
    padding:10px 0;
}

.header.sticky{
    background:#5d2c1e8c;
    backdrop-filter:blur(18px);
    box-shadow:0 10px 45px rgba(0,0,0,.06);
    padding:10px 0;
}

.header.sticky a {
  color: #fff;
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/*=============================
        LOGO
==============================*/

.logo{

    display:flex;

    align-items:center;

    text-decoration:none;
}

.logo img{
    height:65px;

    transition:.35s;
}

.header.sticky .logo img{
    height:54px;
}

/*=============================
        NAVIGATION
==============================*/

.navbar{

    margin-left:auto;

    margin-right:55px;

}

.nav-links{
    display:flex;
    align-items:center;
    gap:45px;
    list-style:none;
    margin-bottom:0;
}

.nav-links>li{
    position:relative;
}

.nav-links>li>a{

    color:var(--white);

    text-decoration:none;

    font-size:15px;

    font-weight:600;

    letter-spacing:.3px;

    display:flex;

    align-items:center;

    gap:6px;

    padding:10px 0;

    transition:.3s;

    position:relative;
}

.nav-links>li>a i{

    font-size:11px;

    transition:.3s;

}

/*=============================
        DOT ANIMATION
==============================*/

.nav-links>li>a::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-8px;

    width:6px;

    height:6px;

    background:var(--secondary);

    border-radius:50%;

    transform:translateX(-50%) scale(0);

    transition:.3s;

}

.nav-links>li:hover>a::after,

.nav-links>li>a.active::after{

    transform:translateX(-50%) scale(1);
}

.nav-links>li:hover>a{

    color:var(--bg);

}

.has-dropdown:hover>a i{

    transform:rotate(180deg);
}

/*=============================
        MEGA MENU
==============================*/

.mega-menu{
    position:absolute;
    top:115%;
    left:-40px;
    max-width:700px;
    background:#fff;
    border-radius:22px;
    padding:30px;
    display:flex;
    gap:45px;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:.35s;
    box-shadow:0 25px 60px rgba(0,0,0,.08);
    border:1px solid var(--border);
    white-space: nowrap;
    text-align:left;
}

.small{
    width:234px;
    left:0;
    padding:25px;
}

.has-dropdown:hover .mega-menu{
    opacity:1;

    visibility:visible;

    transform:translateY(0);
}

.mega-column{
    flex:1;
}

.mega-column h4{
    font-family:'Cormorant Garamond',serif;

    color:var(--dark);

    font-size:28px;

    margin-bottom:18px;
}

.mega-menu .mega-column a{
    display:block;
    color:#444;
    text-decoration:none;
    padding:9px 0;
    transition:.3s;
    font-size:15px;
}

.mega-column a:hover{
    color:var(--primary);

    transform:translateX(8px);
}

/*=============================
        RIGHT SIDE
==============================*/

.header-right{
    display:flex;

    align-items:center;

    gap:20px;
}

.search-btn{
    width:48px;

    height:48px;

    border-radius:50%;

    border:none;

    background:#F4F1EC;

    cursor:pointer;

    transition:.3s;
}

.search-btn:hover{
    background:var(--secondary);

    color:#fff;
}

.menubar{
    width:48px;

    height:48px;

    border:none;

    background:none;

    display:flex;

    flex-direction:column;

    justify-content:center;

    gap:6px;

    cursor:pointer;
}

.menubar span{
    width:24px;
    height:2px;
    background:#fff;
    transition:.35s;
}

.menubar:hover span:nth-child(1){
    width:18px;
}

.menubar:hover span:nth-child(2){
   width:28px;
}

.menubar:hover span:nth-child(3){
    width:20px;
}
.menubar{
    display:none;
}

/*=============================
        RESPONSIVE
==============================*/
@media(max-width:768px){

.logo img{
height:50px;
}

.menubar{
    position:relative;
    width:40px;
    height:40px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    cursor:pointer;
    z-index:10001
}

.menubar span{
    position:absolute;
    width:26px;
    height:2px;
    background:#fff;
    transition:.3s;
}

.menubar span:nth-child(1){
    transform:translateY(-8px);
}

.menubar span:nth-child(2){
    transform:translateY(0);
}

.menubar span:nth-child(3){
    transform:translateY(8px);
}

/* X Icon */

.menubar.active span:nth-child(1){
    transform:rotate(45deg);
}

.menubar.active span:nth-child(2){
    opacity:0;
}

.menubar.active span:nth-child(3){
    transform:rotate(-45deg);
}

.navbar{
position:fixed;
top:0;
right:-100%;
width:300px;
height:100vh;
background:#3f1b11;
margin:0;
padding:90px 30px 30px;
transition:.4s;
z-index:10000;
overflow-y:auto;
}

.navbar.active{
right:0;
display:block;
}

.nav-links{
display:flex;
flex-direction:column;
justify-content:flex-start;
align-items:flex-start;
width:100%;
padding:0;
margin:0;
gap:15px;
}

.nav-links li{
width:100%;
margin:0;
padding:0;
}

.nav-links li a{
display:flex;
justify-content:space-between;
align-items:center;
width:100%;
padding:18px 0;
}

.nav-links>li{
width:100%;
border-bottom:1px solid #ffffff36;
}

.nav-links>li>a{
color:#e7e7e7;
padding:16px 0;
justify-content:space-between;
width:100%;
}

.mega-menu{
position:static;
opacity:1;
visibility:visible;
transform:none;
display:none;
flex-direction:column;
background:#f8f8f8;
box-shadow:none;
border:none;
border-radius:12px;
padding:10px 20px;
margin:10px 0;
max-width:100%;
white-space:normal;
}

.has-dropdown:hover .mega-menu{
display:none;
}

.has-dropdown.active .mega-menu{
display:flex;
}

.mega-column{
width:100%;
}

.mega-column h4{
font-size:20px;
margin-bottom:10px;
}

.mega-column a{
padding:10px 0;
font-size:15px;
}

}

/*Hero Section*/
.hero{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}
.hero img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(8, 18, 15, 0.78) 0%,
            rgba(8, 18, 15, 0.68) 20%,
            rgba(8, 18, 15, 0.48) 38%,
            rgba(8, 18, 15, 0.20) 58%,
            rgba(8, 18, 15, 0.04) 78%,
            rgba(8, 18, 15, 0) 100%
        );
    z-index: 1;
    pointer-events: none;
}
.hero-overlay{
    position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  max-width: 700px;
  z-index: 2;
  text-align:start;
}
.hero-overlay span{
    display:inline-block;
    color:#E8D6B6;
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:15px;
}
.hero-overlay h1{
    font-family:'Cormorant Garamond',serif;
    font-size:60px;
    line-height:1.05;
    color:#fff;
    margin-bottom:25px;
}
.hero-overlay p{
    font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,.92);
  margin-bottom: 20px;
  max-width: 560px;
}
.hero-overlay a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 22px;
    background:var(--secondary);
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.35s;
}
.hero-overlay a:hover{
    background:#a95b3f;
    transform:translateY(-3px);
}
.scroll-indicator{
    position:absolute;
    left:50%;
    bottom:35px;
    transform:translateX(-50%);
    width:28px;
    height:48px;
    border:2px solid rgba(255,255,255,.6);
    border-radius:30px;
    z-index:2;
}
.scroll-indicator::before{
    content:'';
    position:absolute;
    left:50%;
    top:8px;
    width:5px;
    height:10px;
    background:#fff;
    border-radius:10px;
    transform:translateX(-50%);
    animation:scroll 1.8s infinite;
}
@keyframes scroll{
    0%{
        opacity:0;
        transform:translate(-50%,0);
    }
    50%{
        opacity:1;
    }
    100%{
        opacity:0;
        transform:translate(-50%,16px);
    }
}
@media(max-width:991px){
    .hero{
        height:85vh;
    }
    .hero-overlay{
        left:6%;
        right:6%;
        max-width:100%;
    }
    .hero-overlay h1{
        font-size:52px;
    }
    .hero-overlay p{
        font-size:17px;
    }
    .hero::before {
  content: '';
  position: absolute;
  inset: 0;

  background: linear-gradient(90deg,rgba(0, 0, 0, 0.96) 0%,rgba(0, 0, 0, 0.91) 35%,rgba(0, 0, 0, 0.62) 65%,rgba(0, 0, 0, 0.49) 100%);

  z-index: 1;
}
}
/* =========================================================
   MOBILE HERO — PREMIUM RESPONSIVE
========================================================= */

@media (max-width: 576px) {

    .hero {
        position: relative;

        height: 78vh;
        min-height: 560px;

        overflow: hidden;

        /* Keep the important rural scene visible */
        background-size: cover;
        background-position: 62% center;
        background-repeat: no-repeat;
    }


    /* -----------------------------------------------------
       MOBILE IMAGE
       Use this if your hero uses an <img>
    ----------------------------------------------------- */

    .hero > img {
        position: absolute;

        inset: 0;

        width: 100%;
        height: 100%;

        object-fit: cover;

        /*
           Keeps the mountain,
           fields and people visible.
        */
        object-position: 62% center;

        z-index: 0;
    }


    /* -----------------------------------------------------
       SOFT MOBILE OVERLAY
       Dark only where text is placed.
       Right side remains brighter.
    ----------------------------------------------------- */

    .hero::before {
        content: "";

        position: absolute;

        inset: 0;

        background:
            linear-gradient(
                90deg,
                rgba(12, 9, 7, .78) 0%,
                rgba(12, 9, 7, .58) 38%,
                rgba(12, 9, 7, .22) 70%,
                rgba(12, 9, 7, .08) 100%
            );

        z-index: 1;

        pointer-events: none;
    }


    /* -----------------------------------------------------
       HERO CONTENT
    ----------------------------------------------------- */

    .hero-overlay {
        position: absolute;

        top: auto;
        left: 0;
        bottom: 12%;

        width: 100%;
        max-width: 100%;

        padding: 0 25px;

        transform: none;

        z-index: 2;

        text-align: left;
    }


    /* Small eyebrow */

    .hero-overlay span {
        display: inline-block;

        margin-bottom: 11px;

        color: #e8d6b6;

        font-size: 9px;
        font-weight: 700;

        letter-spacing: 2.2px;

        line-height: 1.3;
    }


    /* Main heading */

    .hero-overlay h1 {
        max-width: 355px;

        margin: 0 0 17px;

        color: #fff;

        font-family: "Cormorant Garamond", serif;

        font-size: clamp(38px, 10.5vw, 48px);

        font-weight: 500;

        line-height: 1.02;

        letter-spacing: -.3px;
    }


    /* Paragraph */

    .hero-overlay p {
        max-width: 325px;

        margin: 0 0 21px;

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

        font-size: 13.5px;

        line-height: 1.6;
    }


    /* CTA */

    .hero-overlay a {
        display: inline-flex;

        align-items: center;
        justify-content: center;

        min-height: 46px;

        padding: 12px 23px;

        background: var(--secondary);

        color: #fff;

        font-size: 12.5px;
        font-weight: 600;

        text-decoration: none;

        border-radius: 40px;

        transition:
            transform .3s ease,
            background .3s ease;
    }

    .hero-overlay a:hover {
        transform: translateY(-2px);

        background: #a95b3f;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 400px) {

    .hero {
        height: 76vh;
        min-height: 520px;

        background-position: 64% center;
    }

    .hero > img {
        object-position: 87% center;
    }

    .hero-overlay {
        bottom: 10%;

        padding: 0 20px;
    }

    .hero-overlay span {
        font-size: 8.5px;

        letter-spacing: 2px;

        margin-bottom: 9px;
    }

    .hero-overlay h1 {
        max-width: 320px;

        font-size: 36px;

        line-height: 1.04;

        margin-bottom: 15px;
    }

    .hero-overlay p {
        max-width: 295px;

        font-size: 12.5px;

        line-height: 1.55;

        margin-bottom: 19px;
    }

    .hero-overlay a {
        min-height: 44px;

        padding: 11px 21px;

        font-size: 12px;
    }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 360px) {

    .hero {
        min-height: 500px;

        background-position: 65% center;
    }

    .hero > img {
        object-position: 65% center;
    }

    .hero-overlay {
        bottom: 8%;

        padding: 0 18px;
    }

    .hero-overlay h1 {
        max-width: 295px;

        font-size: 33px;
    }

    .hero-overlay p {
        max-width: 275px;

        font-size: 12px;
    }
}

/*About Section*/
.about-section{
    padding:100px 0;
    background:#fff;
}
.about-img{
    overflow:hidden;
    border-radius:20px;
}
.about-img img{
    width:100%;
    height:420px;
    object-fit:cover;
    display:block;
    border-radius:20px;
    transition:.5s;
}
.about-img:hover img{
    transform:scale(1.05);
}
.about-content{
    padding-left:50px;
}
.section-tag{
    display:inline-block;
    margin-bottom:18px;
    color:var(--secondary);
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}
.about-content h2{
    font-family:'Cormorant Garamond',serif;
    font-size:48px;
    line-height:1.1;
    color:var(--dark);
    margin-bottom:25px;
}
.about-content p{
   font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 22px;
}
.about-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    color:var(--primary);
    font-weight:700;
    margin-top:10px;
    transition:.3s;
}
.about-btn i{
    transition:.3s;
}
.about-btn:hover{
    color:var(--secondary);
}
.about-btn:hover i{
    transform:translateX(6px);
}
@media(max-width:991px){
    .about-img{
        margin-bottom:40px;
    }
    .about-content{
        padding-left:0;
    }
    .about-content h2{
        font-size:30px;
    }
    .about-section {
  padding: 70px 0;
  background: #fff;
}
}

/*Focus Areas*/
.impact-section{
padding:60px 0;
background:#faf8f3;
}
.impact-card{
background:#fff;
border-radius:4px;
overflow:hidden;
box-shadow:0 15px 40px rgba(0,0,0,.06);
transition:.35s;
height:100%;
}
.impact-card:hover{
transform:translateY(-8px);
box-shadow:0 25px 60px rgba(0,0,0,.12);
}
.impact-image{
height:auto;
overflow:hidden;
}
.impact-image img{
width:100%;
height:100%;
object-fit:cover;
transition:.5s;
}
.impact-card:hover img{
transform:scale(1.08);
}
.impact-content{
padding:30px;
}
.impact-content h3,
.impact-text h3{
font-family:'Cormorant Garamond',serif;
font-size:35px;
color:#000;
margin-bottom:8px;
}
.impact-content span,
.impact-text span{
display:block;
font-size:14px;
letter-spacing:2px;
text-transform:uppercase;
color:#da906c;
margin-bottom:20px;
font-weight:700;
}
.impact-content p,
.impact-text p{
font-size:16px;
line-height:1.5;
color:#fff;
margin-bottom:0px;
}
.impact-large p{
    color:#222;
}
.impact-large span{
    color:var(--secondary);
}
.impact-content a,
.impact-text a{
text-decoration:none;
color:#556b2f;
font-weight:700;
display:inline-flex;
align-items:center;
gap:10px;
}
.impact-horizontal{
display:flex;
height:auto;
}
.impact-text{
flex:1;
padding:15px;
display:flex;
flex-direction:column;
justify-content:center;
background-color:var(--secondary);
}
.impact-small-img{
width:42%;
overflow:hidden;
}
.impact-small-img img{
width:100%;
height:100%;
object-fit:cover;
transition:.5s;
}
.reverse{
flex-direction:row;
}
@media(max-width:991px){
.impact-horizontal{
flex-direction:column;
height:auto;
}
.impact-small-img{
width:100%;
height:280px;
}
.impact-image{
height:320px;
}
.impact-content h3,
.impact-text h3{
font-size:34px;
}
}

/*commitment*/
.impact-banner{
    position:relative;
    padding:100px 0;
    background:url('../img/impact.png') center center/cover no-repeat;
    background-attachment:fixed;
}
.impact-banner::before{
    content:"";
    position:absolute;
    inset:0;
    background:#000000bd;
}
.impact-banner .overlay{
    position:relative;
    z-index:2;
}
.impact-banner .container{
    max-width:1000px;
}
.impact-banner span{
    display:inline-block;
    color:#d89b6a;
    font-size:15px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:20px;
}
.impact-banner h2{
    color:#fff;
    font-size:60px;
    line-height:1.15;
    margin-bottom:30px;
}
.impact-banner p{
    color:rgba(255,255,255,.88);
    font-size:20px;
    line-height:1.5;
    margin-bottom:45px;
    max-width:780px;
}
.impact-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px 40px;
    margin-bottom:45px;
}
.impact-list div{
    color:#fff;
    font-size:18px;
    font-weight:600;
}
.impact-btn{
    display:inline-block;
    padding:10px 22px;
    background:var(--secondary);
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}
.impact-btn:hover{
    background:#a95b3f;
}

.impact-list div{
    display:flex;
    align-items:center;
    gap:14px;
    color:#fff;
    font-size:18px;
    font-weight:600;
}
.impact-list i{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    color:#d89b6a;
    font-size:18px;
}
@media(max-width:768px){
    .impact-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px 40px;
  margin-bottom: 45px;
}
    .impact-banner h2 {
  color: #fff;
  font-size: 40px;
  line-height: 1.3;
  margin-bottom: 30px;
}
    .impact-banner p {
  color: rgba(255,255,255,.88);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 45px;
  max-width: 780px;
}
    .title h2 {
  font-family: 'Cormorant Garamond',serif;
  font-size: 35px;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 40px;
  text-align: center;
}
}

/*Collabrate*/
.collaboration-section{
padding:60px 0;
background:#faf8f3;
}
.collaboration-section .section-title{
max-width:820px;
margin:0 auto 60px;
}
.collaboration-section .section-title span{
display: inline-block;
  margin-bottom: 18px;
  color: var(--secondary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.collaboration-section .section-title p{
font-size:16px;
line-height:1.6;
}
.partner-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
margin-top:50px;
}
.partner-box{
background:#fff;
padding:30px 30px 10px;
border-radius:24px;
text-align:left;
transition:.35s;
border:1px solid #ece4da;
}
.partner-box:hover{
transform:translateY(-10px);
box-shadow:0 20px 45px rgba(0,0,0,.08);
}
.partner-box:hover .partner-icon {
    background: var(--secondary);
  color: var(--white);
}
.partner-icon{
width:90px;
height:90px;
margin:0 auto 25px 0px;
border-radius:50%;
background:#693d3061;
color:var(--secondary);
display:flex;
align-items:center;
justify-content:center;
}
.partner-icon i{
font-size:34px;
}
.partner-box h3{
font-size:30px;
margin-bottom:15px;
color: #222;
}
.partner-box p{
font-size:16px;
line-height:1.5;
color:#666;
}
@media(max-width:991px){
.partner-grid{
grid-template-columns:repeat(2,1fr);
}
}
@media(max-width:767px){
.partner-grid{
grid-template-columns:1fr;
}
.collaboration-section .section-title span {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 3px;

}
.collaboration-section .section-title p {
  font-size: 14px;
  line-height: 1.6;
}
}

/*section*/
.approach-section{
padding:60px 0;
background:#fff;
}
.approach-process{
position:relative;
display:grid;
grid-template-columns:repeat(6,1fr);
gap:25px;
margin-top:70px;
}
.approach-process::before{
content:"";
position:absolute;
top:45px;
left:8%;
width:84%;
height:3px;
background:#d9d9d9;
z-index:0;
}
.process-item{
position:relative;
text-align:center;
z-index:2;
}
.process-icon{
width:90px;
height:90px;
margin:0 auto 25px;
border-radius:50%;
background:var(--secondary);
display:flex;
align-items:center;
justify-content:center;
border:8px solid #fff;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.35s;
}
.process-item:hover .process-icon{
background:#84432c;
transform:translateY(-8px);
}
.process-icon i{
font-size:34px;
color:#fff;
}
.process-item h4{
font-size:24px;
margin-bottom:12px;
color:#222;
}
.process-item p{
font-size:15px;
line-height:1.8;
color:#666;
padding:0 10px;
}
@media(max-width:1200px){
.approach-process{
grid-template-columns:repeat(3,1fr);
row-gap:60px;
}
.approach-process::before{
display:none;
}
}
@media(max-width:768px){
.approach-process{
grid-template-columns:1fr;
}
 .approach-process {
    row-gap: 10px;
  }
 .approach-process {
  position: relative;
  display: grid;
  gap: 25px;
    row-gap: 10px;
  margin-top: 30px;
}
 .process-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 15px;

}
 .process-item p {
  font-size: 15px;
  line-height: 1.5;
}
}

/*Section*/
.initiatives-section{
padding:60px 0;
background:#f8f8f6;
}
.initiatives-section .section-title {
  max-width: 820px;
  margin: 0 auto 60px;
}

.initiative-feature{
background:#fff;
border-radius:24px;
overflow:hidden;
box-shadow:0 18px 50px rgba(0,0,0,.08);
height:100%;
transition:.35s;
}

.initiative-feature:hover{
transform:translateY(-8px);
}

.initiative-img{
height:420px;
overflow:hidden;
}

.initiative-img img{
width:100%;
height:100%;
object-fit:cover;
transition:.5s;
}

.initiative-feature:hover img{
transform:scale(1.08);
}

.initiative-content{
padding:35px;
}

.initiative-content h3{
font-size: 38px;
  margin-bottom: 18px;
  line-height: 1.5;
  color: #333;
}

.initiative-content p{
font-size:17px;
line-height:1.8;
color:#666;
}

.initiative-info{
display:flex;
justify-content:space-between;
margin-top:35px;
padding-top:30px;
border-top:1px solid #ececec;
}

.initiative-info h4{
font-size:34px;
margin-bottom:6px;
color:var(--secondary);
}

.initiative-info p{
margin:0;
font-size:14px;
}

.initiative-card{
background:#fff;
padding:40px 30px;
border-radius:20px;
height:100%;
transition:.35s;
box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.initiative-card.active{
background:var(--secondary);
}

.initiative-card i{
font-size:46px;
color:var(--secondary);
margin-bottom:25px;
transition:.35s;
}

.initiative-card.active i{
color:#fff;
}

.initiative-card h4{
font-size:26px;
margin-bottom:15px;
transition:.35s;
}

.initiative-card.active h4{
color:#fff;
}

.initiative-card p{
font-size:16px;
line-height:1.8;
color:#666;
transition:.35s;
}

.initiative-card.active p{
color:#f2f2f2;
}

@media(max-width:991px){

.initiative-img{
height:320px;
}

.initiative-content h3{
font-size:21px;
}

.initiative-info{
flex-direction:column;
gap:20px;
}
.initiative-content {
  padding: 20px;
}
.initiative-content p {
  font-size: 15px;
  line-height: 1.5;
  color: #666;
}
.initiative-card {
  background: #fff;
  padding: 30px 25px;
}
.initiative-card p {
  font-size: 16px;
  line-height: 1.5;
  color: #666;
  margin-bottom:0;
}

}

/*Ctc Section*/
.cta-section{
padding:80px 0;
background:#f8f8f6;
}

.cta-card{
background:var(--secondary);
color:#fff;
padding:60px 45px;
border-radius:28px;
height:100%;
display:flex;
flex-direction:column;
justify-content:center;
box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.cta-icon{
width:90px;
height:90px;
background:rgba(255,255,255,.15);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:30px;
}

.cta-icon i{
font-size:40px;
color:#fff;
}

.cta-card h2{
font-size:42px;
line-height:1.2;
margin-bottom:25px;
color:#fff;
}

.cta-card p{
font-size:17px;
line-height:1.9;
margin-bottom:35px;
color:#f2f2f2;
}

.theme-btn{
display:inline-flex;
align-items:center;
gap:12px;
padding:15px 34px;
background:#C96C4A;
color:#fff;
border-radius:50px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.theme-btn:hover{
background:#fff;
color:#222;
}

.cta-content{
padding-left:60px;
}

.cta-content span{
display:inline-block;
font-size:13px;
font-weight:700;
letter-spacing:3px;
color:#C96C4A;
margin-bottom:15px;
}

.cta-content h2{
font-size:58px;
line-height:1.1;
margin-bottom:25px;
}

.cta-content>p{
font-size:17px;
line-height:1.9;
color:#666;
margin-bottom:40px;
}

.cta-list{
display:flex;
flex-direction:column;
gap:25px;
}

.cta-item{
display:flex;
gap:20px;
align-items:flex-start;
}

.cta-item i{
width:65px;
height:65px;
background:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
color:var(--secondary);
box-shadow:0 10px 25px rgba(0,0,0,.08);
flex-shrink:0;
}

.cta-item h4{
font-size:24px;
margin-bottom:8px;
}

.cta-item p{
margin:0;
color:#666;
line-height:1.8;
}

@media(max-width:991px){

.cta-content{
padding-left:0;
margin-top:60px;
}

 .cta-content h2 {
    font-size: 32px;
    
  }
 .cta-content > p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 40px;
  text-align: center;
}
.cta-card {
  background: var(--secondary);
  color: #fff;
  padding: 30px 25px;
  border-radius: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 25px 60px rgba(0,0,0,.12);
}
.cta-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
}
.cta-icon i {
  font-size: 35px;
  color: #fff;
}
.cta-card h2 {
  font-size: 38px;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
  text-align: left;
}
.cta-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #f2f2f2;
}

}

/*Footer*/
.footer{
background:var(--primary);
padding:90px 0 0;
color:#fff;
}

.footer-logo img{
height:65px;
margin-bottom:25px;
}

.footer-text{
color:rgba(255,255,255,.75);
line-height:1.9;
margin-bottom:30px;
font-size:16px;
}

.footer h4{
color:#fff;
font-size:24px;
margin-bottom:28px;
position:relative;
}

.footer h4::after{
content:"";
position:absolute;
left:0;
bottom:-10px;
width:45px;
height:3px;
background:#C96C4A;
}

.footer ul{
list-style:none;
padding:0;
margin:0;
}

.footer ul li{
margin-bottom:16px;
}

.footer ul li a{
color:rgba(255,255,255,.75);
text-decoration:none;
transition:.3s;
}

.footer ul li a:hover{
color:#C96C4A;
padding-left:8px;
}

.social-links{
display:flex;
gap:12px;
}

.social-links a{
width:45px;
height:45px;
background:rgba(255,255,255,.08);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
text-decoration:none;
transition:.35s;
}

.social-links a:hover{
background:#C96C4A;
transform:translateY(-5px);
}

.footer-contact{
display:flex;
flex-direction:column;
gap:25px;
}

.footer-contact div{
display:flex;
gap:18px;
align-items:flex-start;
}

.footer-contact i{
font-size:20px;
color:#C96C4A;
margin-top:4px;
}

.footer-contact span{
color:rgba(255,255,255,.75);
line-height:1.8;
}

.footer-bottom{
margin-top:70px;
padding:25px 0;
border-top:1px solid rgba(255,255,255,.1);
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:15px;
}

.footer-bottom p{
margin:0;
color:rgba(255,255,255,.65);
}

.footer-bottom a{
color:#C96C4A;
text-decoration:none;
}

@media(max-width:991px){

.footer{
text-align:center;
}

.footer h4::after{
left:50%;
transform:translateX(-50%);
}

.social-links{
justify-content:center;
}

.footer-contact div{
justify-content:center;
text-align:left;
}

.footer-bottom{
justify-content:center;
}

}





/*========================================
        IMPACT STATISTICS
========================================*/

.impact-stats-section {
    width: 100%;
    padding: 65px 0 70px;
    background: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}


/*========================================
        HEADING
========================================*/

.impact-stats-heading {
    width: 100%;
    text-align: center;
    margin: 0 auto 42px;
}

.impact-stats-heading h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    padding: 0;
}

.impact-stats-heading h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 2px;
    background: var(--secondary);
    margin: 18px auto 0;
}

.impact-stats-heading span {
    color: #e7c8b7;
    
}


/*========================================
        STATS GRID
========================================*/

.impact-stats-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
}


/*========================================
        STAT ITEM
========================================*/

.impact-stat-item {
    position: relative;
    text-align: center;
    padding: 0 25px;
    min-width: 0;
}

.impact-stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 5px;
    right: 0;
    width: 1px;
    height: calc(100% - 10px);
    background: rgba(255, 255, 255, .25);
}


/*========================================
        ICON
========================================*/

.impact-stat-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #e7c8b7;
    font-size: 28px;

    border-radius: 50%;

    transition:
        background-color .35s ease,
        color .35s ease,
        transform .35s ease;
}

.impact-stat-item:hover .impact-stat-icon {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-5px);
}


/*========================================
        NUMBER
========================================*/

.impact-stat-item h3 {
   
    font-size: 42px;
    line-height: 1;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 8px;
    padding: 0;
}

.impact-stat-item h3 small {
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    line-height: 1;
    font-weight: 700;
    color: var(--white);
}


/*========================================
        STAT TITLE
========================================*/

.impact-stat-item h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 8px;
    padding: 0;
}


/*========================================
        SOURCE
========================================*/

.impact-stat-item p {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    color: rgba(255, 255, 255, .65);
    margin: 0;
    padding: 0;
}


/*========================================
        TABLET
========================================*/

@media (max-width: 991px) {

    .impact-stats-section {
        padding: 70px 0;
    }

    .impact-stats-heading {
        margin-bottom: 40px;
    }

    .impact-stats-heading h2 {
        font-size: 40px;
    }

    .impact-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 45px;
    }

    .impact-stat-item {
        padding: 0 20px;
    }

    .impact-stat-item:nth-child(1)::after,
    .impact-stat-item:nth-child(3)::after {
        display: block;
    }

    .impact-stat-item:nth-child(2)::after,
    .impact-stat-item:nth-child(4)::after {
        display: none;
    }

    .impact-stat-icon {
        width: 54px;
        height: 54px;
        font-size: 25px;
        margin-bottom: 12px;
    }

    .impact-stat-item h3 {
        font-size: 36px;
    }

    .impact-stat-item h3 small {
        font-size: 15px;
    }

    .impact-stat-item h4 {
        font-size: 14px;
    }

    .impact-stat-item p {
        font-size: 10px;
    }
}


/*========================================
        MOBILE
========================================*/

@media (max-width: 600px) {

    .impact-stats-section {
        padding: 60px 0;
    }

    .impact-stats-heading {
        margin-bottom: 35px;
    }

    .impact-stats-heading h2 {
        font-size: 34px;
        line-height: 1.1;
    }

    .impact-stats-heading h2::after {
        width: 60px;
        margin-top: 14px;
    }

    .impact-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 35px;
    }

    .impact-stat-item {
        padding: 0 12px;
    }

    .impact-stat-item:nth-child(1)::after,
    .impact-stat-item:nth-child(3)::after {
        display: block;
        height: 90%;
        top: 5%;
    }

    .impact-stat-item:nth-child(2)::after,
    .impact-stat-item:nth-child(4)::after {
        display: none;
    }

    .impact-stat-icon {
        width: 48px;
        height: 48px;
        font-size: 22px;
        margin-bottom: 10px;
    }

    .impact-stat-item h3 {
        font-size: 32px;
    }

    .impact-stat-item h3 small {
        font-size: 13px;
    }

    .impact-stat-item h4 {
        font-size: 12px;
        line-height: 1.4;
    }

    .impact-stat-item p {
        font-size: 9px;
        line-height: 1.4;
    }
}


/*========================================
        SMALL MOBILE
========================================*/

@media (max-width: 480px) {

    .impact-stats-section {
        padding: 55px 0;
    }

    .impact-stats-heading {
        margin-bottom: 30px;
    }

    .impact-stats-heading h2 {
        font-size: 30px;
    }

    .impact-stats-grid {
        row-gap: 30px;
    }

    .impact-stat-item {
        padding: 0 9px;
    }

    .impact-stat-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
        margin-bottom: 9px;
    }

    .impact-stat-item h3 {
        font-size: 29px;
    }

    .impact-stat-item h3 small {
        font-size: 12px;
    }

    .impact-stat-item h4 {
        font-size: 11px;
    }

    .impact-stat-item p {
        font-size: 8.5px;
    }
}


/*========================================
        VERY SMALL MOBILE
========================================*/

@media (max-width: 380px) {

    .impact-stats-section {
        padding: 45px 0;
    }

    .impact-stats-heading h2 {
        font-size: 28px;
    }

    .impact-stat-item {
        padding: 0 6px;
    }

    .impact-stat-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .impact-stat-item h3 {
        font-size: 26px;
    }

    .impact-stat-item h3 small {
        font-size: 11px;
    }

    .impact-stat-item h4 {
        font-size: 17px;
    }

    .impact-stat-item p {
        font-size: 14px;
    }

}


/*========================================
        IMPACT JOURNEY SECTION
========================================*/

.impact-journey-section {
    width: 100%;
    padding: 80px 0 70px;
    background: var(--primary);
    color: var(--white);
    overflow: hidden;
}


/*========================================
        TIMELINE WRAPPER
========================================*/

.impact-journey {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    position: relative;
}


/*========================================
        TIMELINE VERTICAL LINE
========================================*/

.impact-journey::before {
    content: "";
    position: absolute;

    top: 20px;
    bottom: 20px;

    left: 35.26%;

    width: 1px;

    background: repeating-linear-gradient(
        to bottom,
        rgba(255,255,255,.75) 0,
        rgba(255,255,255,.75) 5px,
        transparent 5px,
        transparent 10px
    );

    transform: translateX(-50%);
}


/*========================================
        TIMELINE ITEM
========================================*/

.impact-journey-item {
    position: relative;

    display: grid;

    grid-template-columns: 180px 150px 1fr;

    align-items: center;

    min-height: 110px;

    margin-bottom: 8px;
}


/*========================================
        ICON
========================================*/

.impact-journey-icon {
    width: 80px;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #eec3ab;

    font-size: 42px;

    justify-self: center;

    position: relative;

    z-index: 2;
}

.impact-journey-icon i {
    transition: transform .35s ease;
}

.impact-journey-item:hover .impact-journey-icon i {
    transform: translateY(-5px);
}


/*========================================
        YEAR
========================================*/

.impact-journey-year {
    position: relative;

    text-align: right;

    padding-right: 35px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 32px;

    line-height: 1;

    font-weight: 700;

    color: var(--white);
}


/*========================================
        TIMELINE DOT
========================================*/

.impact-journey-year::after {
    content: "";

    position: absolute;

    right: -1px;

    top: 50%;

    width: 14px;
    height: 14px;

    border-radius: 50%;

    background: var(--secondary);

    border: 3px solid var(--bg);

    transform: translateY(-50%);

    z-index: 3;
}


/*========================================
        CONTENT
========================================*/

.impact-journey-content {
    padding-left: 35px;
    padding-right: 10px;
}


/*========================================
        CONTENT HEADING
========================================*/

.impact-journey-content h3 {
    display: inline-block;

    font-family: 'Manrope', sans-serif;

    font-size: 20px;

    line-height: 1.3;

    font-weight: 700;

    color: var(--white);

    margin: 0 0 8px;
}


/*========================================
        HIGHLIGHT
========================================*/

.impact-journey-content h3 span {
    display: inline;

    color: var(--white);

    background: #794333;

    padding: 5px 9px;

    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}


/*========================================
        PARAGRAPH
========================================*/

.impact-journey-content p {
    font-family: 'Manrope', sans-serif;

    font-size: 14px;

    line-height: 1.65;

    font-weight: 400;

    color: var(--white);

    margin: 0;

    max-width: 480px;
}


/*========================================
        MISSION
========================================*/

.impact-mission {
    max-width: 850px;

    margin: 45px auto 0;

    text-align: center;
}


/*========================================
        MISSION ICON
========================================*/

.impact-mission-icon {
    width: 48px;
    height: 48px;

    margin: 0 auto 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #eec3ab;

    border-radius: 50%;

    color: #eec3ab;

    font-size: 20px;
}


/*========================================
        MISSION TEXT
========================================*/

.impact-mission p {
    font-family: 'Manrope', sans-serif;

    font-size: 18px;

    line-height: 1.55;

    font-weight: 600;

    color: var(--white);

    margin: 0;
}

.impact-mission em {
    color:#eec3ab;
   
}


/*========================================
        MISSION UNDERLINE
========================================*/

.impact-mission::after {
    content: "";

    display: block;

    width: 80px;
    height: 2px;

    margin: 18px auto 0;

    background:rgba(255, 255, 255, .25);
}


/*========================================
        TABLET
========================================*/

@media (max-width: 991px) {

    .impact-journey-section {
        padding: 70px 0 60px;
    }

    .impact-journey {
        max-width: 760px;
    }

    .impact-journey-item {
        grid-template-columns: 140px 120px 1fr;
        min-height: 105px;
    }

    .impact-journey-icon {
        width: 65px;
        height: 65px;
        font-size: 34px;
    }

    .impact-journey-year {
        font-size: 28px;
        padding-right: 30px;
    }

    .impact-journey-content {
        padding-left: 30px;
    }

    .impact-journey-content h3 {
        font-size: 18px;
    }

    .impact-journey-content p {
        font-size: 13px;
    }

    .impact-mission {
        margin-top: 40px;
    }

    .impact-mission p {
        font-size: 17px;
    }
}


/*========================================
        MOBILE
========================================*/

@media (max-width: 600px) {

    .impact-journey-section {
        padding: 55px 0 50px;
    }

    .impact-journey {
        width: 100%;
    }


    /* Timeline moves to left side */

    .impact-journey::before {
        left: 47px;

        top: 15px;
        bottom: 15px;
    }


    /*====================================
            ITEM
    ====================================*/

    .impact-journey-item {
        display: grid;

        grid-template-columns: 70px 75px 1fr;

        min-height: 125px;

        margin-bottom: 10px;

        align-items: center;
    }


    /*====================================
            ICON
    ====================================*/

    .impact-journey-icon {
        width: 60px;
        height: 60px;

        font-size: 29px;

        justify-self: center;

        z-index: 4;
    }


    /*====================================
            YEAR
    ====================================*/

    .impact-journey-year {
        font-size: 23px;

        text-align: right;

        padding-right: 25px;

        white-space: nowrap;
    }

    .impact-journey-year::after {
        right: -7px;

        width: 13px;
        height: 13px;
    }


    /*====================================
            CONTENT
    ====================================*/

    .impact-journey-content {
        padding-left: 22px;
        padding-right: 5px;
    }

    .impact-journey-content h3 {
        font-size: 15px;

        line-height: 1.35;

        margin-bottom: 7px;
    }

    .impact-journey-content h3 span {
        padding: 4px 7px;
    }

    .impact-journey-content p {
        font-size: 11px;

        line-height: 1.5;
    }


    /*====================================
            MISSION
    ====================================*/

    .impact-mission {
        margin-top: 35px;

        padding: 0 10px;
    }

    .impact-mission-icon {
        width: 44px;
        height: 44px;

        font-size: 18px;

        margin-bottom: 12px;
    }

    .impact-mission p {
        font-size: 14px;

        line-height: 1.55;
    }

    .desktop-break {
        display: none;
    }

}


/*========================================
        SMALL MOBILE
========================================*/

@media (max-width: 480px) {

    .impact-journey-section {
        padding: 50px 0 45px;
    }

    .impact-journey::before {
        left: 40px;
    }

    .impact-journey-item {
        grid-template-columns: 60px 65px 1fr;

        min-height: 120px;
    }

    .impact-journey-icon {
        width: 52px;
        height: 52px;

        font-size: 25px;
    }

    .impact-journey-year {
        font-size: 20px;
        padding-right: 22px;
    }

    .impact-journey-year::after {
        width: 12px;
        height: 12px;
    }

    .impact-journey-content {
        padding-left: 20px;
    }

    .impact-journey-content h3 {
        font-size: 14px;
    }

    .impact-journey-content h3 span {
        padding: 3px 6px;
    }

    .impact-journey-content p {
        font-size: 10px;
        line-height: 1.5;
    }

    .impact-mission {
        padding: 0 5px;
    }

    .impact-mission p {
        font-size: 13px;
    }
}


/*========================================
        VERY SMALL MOBILE
========================================*/

@media (max-width: 380px) {

    .impact-journey::before {
        left: 112px;
    }

    .impact-journey-item {
        grid-template-columns: 52px 60px 1fr;
        min-height: 115px;
    }

    .impact-journey-icon {
        width: 46px;
        height: 46px;

        font-size: 22px;
    }

    .impact-journey-year {
        font-size: 22px;
        padding-right: 20px;
    }

    .impact-journey-content {
        padding-left: 17px;
    }

    .impact-journey-content h3 {
        font-size: 17px;
    }

    .impact-journey-content p {
        font-size: 14px;
    }

    .impact-mission p {
        font-size: 15px;
    }

}

/* =========================================================
   OUR APPROACH
========================================================= */

.nf-approach {
    position: relative;
    padding: 40px 0 0;
    background: #faf7f4;
    overflow: hidden;
}

.nf-approach-container {
    width: min(1450px, 94%);
    margin: auto;
}


/* =========================================================
   HEADING
========================================================= */

.nf-approach-heading {
    max-width: 700px;
    margin: 0 auto 75px;
    text-align: center;
}

.nf-approach-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 16px;

    color: #a75d43;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 3px;
}

.nf-approach-eyebrow::before,
.nf-approach-eyebrow::after {
    content: "";
    width: 28px;
    height: 1px;
    background: #c8947d;
}

.nf-approach-heading h2 {
    margin: 0;

    color: #3d281f;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(42px, 5vw, 64px);
    line-height: .95;
    font-weight: 600;
}

.nf-approach-heading h2 em {
    display: block;

    color: #ae6248;
    font-style: italic;
}

.nf-approach-heading p {
    max-width: 610px;
    margin: 22px auto 0;

    color: #806d64;

    font-size: 14px;
    line-height: 1.7;
}


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

.nf-timeline-scroll {
    width: 100%;
    overflow: visible;
}

.nf-timeline {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;

    height: 360px;
}


/* MAIN LINE */

.nf-timeline::before {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    top: 50%;

    height: 2px;

    transform: translateY(-50%);

    background:
        linear-gradient(
            90deg,
            #d7b9aa,
            #a75b41,
            #c58167,
            #a75b41,
            #d7b9aa
        );

    z-index: 0;
}


/* =========================================================
   STEP
========================================================= */

.nf-timeline-step {
    position: relative;

    flex: 1;

    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   NODE
========================================================= */

.nf-timeline-node {
    position: relative;

    width: 78px;
    height: 78px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #faf7f4;

    border: 2px solid #a95d43;

    color: #a95d43;

    box-shadow:
        0 0 0 7px #faf7f4,
        0 0 0 8px #ddc4b8;

    z-index: 3;

    transition:
        transform .6s cubic-bezier(.16,1,.3,1),
        background .35s ease,
        color .35s ease,
        box-shadow .4s ease;
}

.nf-timeline-node span {
    position: absolute;

    top: -25px;

    color: #4a3027;

    font-family: "Cormorant Garamond", serif;

    font-size: 19px;
    font-weight: 700;
}

.nf-timeline-node i {
    font-size: 24px;

    transition:
        transform .6s cubic-bezier(.16,1,.3,1);
}


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

.nf-timeline-step:hover .nf-timeline-node {
    transform: scale(1.12);

    background: #a75b41;

    color: #fff;

    box-shadow:
        0 0 0 7px #faf7f4,
        0 0 0 8px #bc7a61,
        0 14px 30px rgba(100,50,32,.20);
}

.nf-timeline-step:hover .nf-timeline-node i {
    transform: rotate(360deg);
}

.nf-timeline-step:hover .nf-timeline-node span {
    color: #a75b41;
}


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

.nf-timeline-content {
    position: absolute;

    width: 165px;

    text-align: center;

    transition:
        transform .4s ease;
}

.nf-content-top {
    bottom: calc(50% + 55px);
}

.nf-content-bottom {
    top: calc(50% + 55px);
}

.nf-timeline-step:hover .nf-timeline-content {
    transform: translateY(-4px);
}


/* =========================================================
   LABEL
========================================================= */

.nf-timeline-label {
    display: block;

    margin-bottom: 6px;

    color: #ae6248;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.8px;
}


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

.nf-timeline-content h3 {
    margin: 0 0 7px;

    color: #422b22;

    font-family: "Cormorant Garamond", serif;

    font-size: 20px;
    font-weight: 700;

    line-height: 1.05;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.nf-timeline-content p {
    margin: 0 auto;

    max-width: 165px;

    color: #806d63;

    font-size: 13px;
    line-height: 1.45;
}


/* =========================================================
   ARROWS
========================================================= */

.nf-timeline-arrow {
    position: absolute;

    right: -5px;

    top: 50%;

    width: 24px;
    height: 24px;

    transform: translateY(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    background: #faf7f4;

    color: #a75b41;

    font-size: 11px;

    z-index: 4;

    transition:
        transform .35s ease,
        color .35s ease;
}

.nf-timeline-step:hover .nf-timeline-arrow {
    color: #7f432f;

    transform:
        translateY(-50%)
        translateX(4px);
}


/* =========================================================
   LAST NODE
========================================================= */

.nf-last-step .nf-timeline-node {
    background: #a75b41;
    color: #fff;
}


/* =========================================================
   MOBILE HINT
========================================================= */

.nf-timeline-scroll-hint {
    display: none;

    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-top: 10px;

    color: #a75b41;

    font-size: 10px;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .nf-timeline {
        height: 350px;
    }

    .nf-timeline-content {
        width: 135px;
    }

    .nf-timeline-content p {
        font-size: 13px;
    }

    .nf-timeline-node {
        width: 70px;
        height: 70px;
    }

}


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

@media (max-width: 700px) {

    .nf-approach {
        padding: 75px 0 80px;
    }

    .nf-approach-heading {
        width: 90%;
        margin-bottom: 50px;
    }

    .nf-approach-heading h2 {
        font-size: 42px;
    }

    .nf-timeline-scroll {
        overflow-x: auto;
        overflow-y: hidden;

        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;
    }

    .nf-timeline-scroll::-webkit-scrollbar {
        display: none;
    }

    .nf-timeline {

        width: 1450px;

        height: 350px;

        padding: 0 30px;
    }

    .nf-timeline-step {
        flex: 0 0 175px;
    }

    .nf-timeline::before {
        left: 30px;
        right: 30px;
    }

    .nf-timeline-content {
        width: 150px;
    }

    .nf-timeline-content p {
        font-size: 13px;
    }

    .nf-timeline-arrow {
        right: -2px;
    }

    .nf-timeline-scroll-hint {
        display: flex;
    }
}

/* =========================================================
   WHAT WE DO
   PREMIUM ACTIVITY SECTION
========================================================= */

.nf-what-we-do {
    position: relative;

    padding: 50px 0 0;

    background:
        radial-gradient(
            circle at 50% 0%,
            #fffdfb 0%,
            #faf6f2 55%,
            #f7f1ed 100%
        );

    overflow: hidden;
}
.nf-what-container {
    position: relative;

    width: min(1240px, 92%);

    margin: auto;

    z-index: 1;
}


/* =========================================================
   CENTER HEADING
========================================================= */

.nf-what-header {
    text-align: center;

    margin-bottom: 65px;
}


.nf-what-kicker {
    display: block;

    margin-bottom: 12px;

    color: #a45a40;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3.5px;

    text-transform: uppercase;
}


.nf-what-header h2 {
    margin: 0;

    color: #3d2921;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(50px, 6vw, 76px);

    font-weight: 600;

    line-height: .9;

    letter-spacing: -1px;
}


/* =========================================================
   SMALL CENTER DECORATION
========================================================= */

.nf-heading-decoration {

    position: relative;

    width: 70px;

    height: 16px;

    margin: 20px auto 0;
}


.nf-heading-decoration::before {

    content: "";

    position: absolute;

    left: 0;
    right: 0;

    top: 7px;

    height: 1px;

    background: #cda28f;
}


.nf-heading-decoration span {

    position: absolute;

    left: 50%;
    top: 2px;

    width: 11px;
    height: 11px;

    transform: translateX(-50%);

    border-radius: 50%;

    background: #a45a40;

    box-shadow:
        0 0 0 5px #faf6f2;
}


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

.nf-activities {

    display: grid;

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

    column-gap: 70px;

    row-gap: 0;
}


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

.nf-activity {

    position: relative;

    display: grid;

    grid-template-columns:
        42px 62px 1fr 36px;

    align-items: center;

    gap: 18px;

    min-height: 175px;

    padding: 27px 0;

    border-top: 1px solid #dfd0c7;

    overflow: hidden;

    transition:
        border-color .35s ease,
        transform .45s cubic-bezier(.16,1,.3,1);
}


/* first row */

.nf-activity:nth-child(1),
.nf-activity:nth-child(2) {

    border-top-color: #caa291;
}


/* =========================================================
   PREMIUM HOVER BACKGROUND
========================================================= */

.nf-activity::before {

    content: "";

    position: absolute;

    left: -20px;
    right: -20px;

    top: 8px;
    bottom: 8px;

    border-radius: 5px;

    background:
        linear-gradient(
            100deg,
            rgba(166,92,67,.065),
            rgba(166,92,67,.018),
            transparent
        );

    opacity: 0;

    transform: translateX(-20px);

    transition:
        opacity .4s ease,
        transform .5s cubic-bezier(.16,1,.3,1);

    pointer-events: none;
}


.nf-activity:hover::before {

    opacity: 1;

    transform: translateX(0);
}


/* =========================================================
   LEFT ACCENT
========================================================= */

.nf-activity::after {

    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 2px;
    height: 0;

    background: #a45a40;

    transition:
        height .45s cubic-bezier(.16,1,.3,1);
}


.nf-activity:hover::after {

    height: 100%;
}


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

.nf-activity-number {

    position: relative;

    color: #b77a63;

    font-family: "Cormorant Garamond", serif;

    font-size: 18px;

    font-weight: 700;

    transition:
        color .3s ease,
        transform .45s cubic-bezier(.16,1,.3,1);
}


.nf-activity:hover .nf-activity-number {

    color: #8e4934;

    transform:
        translateX(5px)
        scale(1.08);
}


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

.nf-activity-icon {

    position: relative;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fbf7f4;

    border: 1px solid #d7b9aa;

    color: #a45a40;

    font-size: 18px;

    transition:
        transform .7s cubic-bezier(.16,1,.3,1),
        background .4s ease,
        color .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
}


.nf-activity-icon::before {

    content: "";

    position: absolute;

    inset: 6px;

    border: 1px dashed #d7b9aa;

    border-radius: 50%;

    transition:
        transform .7s ease,
        border-color .35s ease;
}


.nf-activity:hover .nf-activity-icon {

    background: #a45a40;

    border-color: #a45a40;

    color: #fff;

    transform:
        rotate(360deg)
        scale(1.08);

    box-shadow:
        0 10px 25px rgba(116,62,43,.18);
}


.nf-activity:hover .nf-activity-icon::before {

    transform: rotate(-180deg);

    border-color: rgba(255,255,255,.55);
}


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

.nf-activity-content {

    position: relative;

    min-width: 0;

    transition:
        transform .4s cubic-bezier(.16,1,.3,1);
}


.nf-activity:hover .nf-activity-content {

    transform: translateX(4px);
}


.nf-activity-content h3 {

    margin: 0 0 9px;

    color: #3d2921;

    font-family: "Cormorant Garamond", serif;

    font-size: 24px;

    font-weight: 700;

    line-height: 1.05;

    transition:
        color .3s ease;
}


.nf-activity:hover .nf-activity-content h3 {

    color: #a45a40;
}


.nf-activity-content p {

    max-width: 440px;

    margin: 0;

    color: #77675f;

    font-size: 13.5px;

    line-height: 1.6;

    transition:
        color .3s ease;
}


.nf-activity:hover .nf-activity-content p {

    color: #66534b;
}


/* =========================================================
   ARROW
========================================================= */

.nf-activity-arrow {

    position: relative;

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #d9bcae;

    border-radius: 50%;

    color: #a45a40;

    font-size: 10px;

    transition:
        transform .5s cubic-bezier(.16,1,.3,1),
        background .35s ease,
        color .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}


.nf-activity:hover .nf-activity-arrow {

    background: #a45a40;

    border-color: #a45a40;

    color: #fff;

    transform:
        translateX(5px)
        rotate(-45deg);

    box-shadow:
        0 7px 18px rgba(116,62,43,.18);
}


/* =========================================================
   HOVER CARD LIFT
========================================================= */

.nf-activity:hover {

    transform: translateY(-3px);

    border-top-color: #c18b76;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .nf-activities {

        grid-template-columns: 1fr;

        column-gap: 0;
    }


    .nf-activity {

        grid-template-columns:
            42px 62px 1fr 36px;
    }


    .nf-activity:nth-child(2) {

        border-top-color: #dfd0c7;
    }

}


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

@media (max-width: 600px) {

    .nf-what-we-do {

        padding: 80px 0 90px;
    }


    .nf-what-container {

        width: 90%;
    }


    .nf-what-header {

        margin-bottom: 48px;
    }


    .nf-what-header h2 {

        font-size: 52px;
    }


    .nf-activity {

        grid-template-columns:
            34px 54px 1fr 30px;

        gap: 12px;

        min-height: auto;

        padding: 23px 0;
    }


    .nf-activity-number {

        font-size: 16px;
    }


    .nf-activity-icon {

        width: 52px;
        height: 52px;

        font-size: 16px;
    }


    .nf-activity-icon::before {

        inset: 5px;
    }


    .nf-activity-content h3 {

        font-size: 21px;

        line-height: 1.08;
    }


    .nf-activity-content p {

        font-size: 13px;

        line-height: 1.55;
    }


    .nf-activity-arrow {

        width: 29px;
        height: 29px;

        font-size: 9px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .nf-what-header h2 {

        font-size: 46px;
    }


    .nf-activity {

        grid-template-columns:
            30px 48px 1fr 27px;

        gap: 9px;
    }


    .nf-activity-icon {

        width: 48px;
        height: 48px;

        font-size: 15px;
    }


    .nf-activity-content h3 {

        font-size: 19px;
    }


    .nf-activity-content p {

        font-size: 12.5px;
    }


    .nf-activity-arrow {

        width: 27px;
        height: 27px;
    }

}