/* =========================================================
   KALAKUNJ FOUNDATION
   PREMIUM NGO WEBSITE V3
========================================================= */

:root {

    --purple: #4b1f5c;
    --purple-dark: #32133f;
    --purple-light: #704078;

    --orange: #f28a1a;
    --orange-light: #ffb84d;

    --green: #315d46;
    --green-light: #e9f2eb;

    --cream: #fffaf2;
    --cream-dark: #f5efe6;

    --white: #ffffff;

    --text: #28242a;
    --text-light: #716a73;

    --border: #e8e0d8;

    --shadow:
        0 25px 70px rgba(53, 28, 63, 0.12);

    --radius: 24px;

    --container: 1180px;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin: auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255,255,255,0.94);

    backdrop-filter: blur(16px);

    border-bottom: 1px solid rgba(75,31,92,0.08);

    transition: 0.3s ease;
}

.header-inner {
    height: 88px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand img {
    width: 205px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    font-size: 14px;
    font-weight: 700;
    color: #2f2930;

    position: relative;

    transition: 0.25s ease;
}

.main-nav a:not(.nav-cta)::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--orange);

    transition: 0.25s ease;
}

.main-nav a:not(.nav-cta):hover {
    color: var(--purple);
}

.main-nav a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--purple);
    color: white !important;

    padding: 14px 23px;

    border-radius: 50px;

    box-shadow: 0 8px 25px rgba(75,31,92,0.2);

    transition: 0.3s ease;
}

.nav-cta:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
}


/* =========================================================
   EYEBROW
========================================================= */

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--orange);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 22px;
}

.eyebrow span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--orange);
}

.eyebrow.dark {
    color: var(--purple);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 720px;

    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            #351640 0%,
            #512061 45%,
            #814064 100%
        );

    color: white;
}

.hero::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -180px;
    bottom: -320px;

    background: rgba(242,138,26,0.35);

    border-radius: 50%;

    filter: blur(3px);
}

.hero::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    left: -180px;
    top: -170px;

    background: rgba(242,138,26,0.12);

    border-radius: 50%;
}

.hero-orb {
    position: absolute;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 50%;
}

.hero-orb-one {
    width: 650px;
    height: 650px;

    right: 2%;
    top: 5%;
}

.hero-orb-two {
    width: 480px;
    height: 480px;

    right: 8%;
    top: 15%;
}

.hero-grid {
    min-height: 720px;

    display: grid;

    grid-template-columns:
        1fr
        0.85fr;

    gap: 70px;

    align-items: center;

    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
}

.hero h1 {
    font-family: "Playfair Display", serif;

    font-size: clamp(54px, 6vw, 86px);

    line-height: 0.98;

    letter-spacing: -3px;

    margin-bottom: 32px;
}

.hero h1 em {
    color: var(--orange-light);
    font-style: normal;
}

.hero-text {
    max-width: 650px;

    font-size: 18px;

    line-height: 1.8;

    color: rgba(255,255,255,0.82);

    margin-bottom: 35px;
}

.hero-actions {
    display: flex;
    gap: 14px;

    flex-wrap: wrap;
}

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 16px 26px;

    border-radius: 50px;

    font-size: 14px;
    font-weight: 800;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--orange);
    color: white;

    box-shadow: 0 12px 30px rgba(242,138,26,0.25);
}

.btn-primary:hover {
    background: #ff9b28;
}

.btn-light {
    background: white;
    color: var(--purple);
}

.btn-light:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.14);
}

.btn-outline {
    border: 1px solid var(--purple);
    color: var(--purple);
    background: transparent;
}

.btn-outline:hover {
    background: var(--purple);
    color: white;
}

.hero-meta {
    margin-top: 32px;

    display: flex;
    align-items: center;

    gap: 12px;

    font-size: 13px;

    color: rgba(255,255,255,0.65);
}

.hero-meta i {
    width: 4px;
    height: 4px;

    background: var(--orange);

    border-radius: 50%;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    position: relative;
}

.hero-image-wrap {
    position: relative;

    width: 100%;

    border-radius: 32px;

    overflow: visible;
}

.hero-image {
    width: 100%;
    height: 540px;

    object-fit: cover;

    border-radius: 32px;

    box-shadow: 0 30px 80px rgba(0,0,0,0.28);

    border: 6px solid rgba(255,255,255,0.12);
}

.hero-image-overlay {
    position: absolute;

    inset: 0;

    border-radius: 32px;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(49,19,61,0.65)
        );
}

.hero-floating-card {
    position: absolute;

    background: rgba(255,255,255,0.96);

    color: var(--purple);

    border-radius: 18px;

    box-shadow: var(--shadow);

    z-index: 4;
}

.card-top {
    right: -30px;
    top: 45px;

    padding: 18px 24px;

    display: flex;
    flex-direction: column;
}

.card-top strong {
    font-size: 34px;
    line-height: 1;
}

.card-top span {
    font-size: 12px;
    color: var(--text-light);
}

.card-bottom {
    left: -35px;
    bottom: 40px;

    padding: 20px 25px;

    display: flex;
    gap: 25px;
}

.card-bottom div {
    display: flex;
    flex-direction: column;
}

.card-bottom strong {
    font-size: 27px;
    line-height: 1.1;
}

.card-bottom span {
    font-size: 11px;
    color: var(--text-light);
}

/* =========================================================
   IMPACT STRIP
========================================================= */

.impact-strip {
    background: var(--cream);

    border-bottom: 1px solid var(--border);
}


.impact-grid {
    display: grid;

    grid-template-columns:
        repeat(5, 1fr);
}


.impact-item {
    min-height: 135px;

    display: flex;

    flex-direction: row;

    flex-wrap: wrap;

    justify-content: center;

    align-content: center;

    align-items: baseline;

    border-right: 1px solid var(--border);

    text-align: center;

    padding: 20px 10px;
}


.impact-item:last-child {
    border-right: 0;
}


/* NUMBER */

.impact-item strong {
    font-size: 38px;

    line-height: 1;

    color: var(--purple);

    display: inline-block;
}


/* + / K+ */

.impact-item b {
    color: var(--orange);

    font-size: 25px;

    line-height: 1;

    display: inline-block;

    margin-left: 3px;
}


/* LABEL */

.impact-item span {
    flex-basis: 100%;

    font-size: 12px;

    color: var(--text-light);

    margin-top: 10px;
}
/* =========================================================
   SECTIONS
========================================================= */

.section {
    padding: 20px 0;
}

.section-heading {
    max-width: 700px;

    margin-bottom: 60px;
}

.section-heading.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-heading.centered .eyebrow {
    justify-content: center;
}

.section-heading h2,
.about-content h2,
.presence-content h2,
.story-content h2,
.stories-content h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(43px, 5vw, 68px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 25px;
}

.section-heading h2 span,
.about-content h2 span,
.presence-content h2 span,
.story-content h2 span,
.stories-content h2 span {
    color: var(--purple);
}

.section-heading p {
    color: var(--text-light);

    font-size: 17px;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;

    grid-template-columns:
        1fr
        0.9fr;

    gap: 90px;

    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 570px;

    object-fit: cover;

    border-radius: 30px;
}

.image-label {
    position: absolute;

    right: -30px;
    bottom: 35px;

    background: var(--orange);

    color: white;

    padding: 22px 28px;

    border-radius: 20px;

    box-shadow: var(--shadow);

    display: flex;
    flex-direction: column;
}

.image-label span {
    font-size: 40px;
    font-weight: 800;

    line-height: 1;
}

.image-label small {
    font-size: 12px;
}

.about-content p {
    color: var(--text-light);

    font-size: 17px;

    margin-bottom: 20px;
}

.text-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 18px;

    color: var(--purple);

    font-size: 14px;

    font-weight: 800;
}

.text-link span {
    transition: 0.25s ease;
}

.text-link:hover span {
    transform: translateX(6px);
}


/* =========================================================
   WORK
========================================================= */

.work-section {
    background: var(--cream);
}

.work-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.work-card {
    min-height: 330px;

    position: relative;

    padding: 34px;

    border-radius: 25px;

    overflow: hidden;

    color: white;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.work-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 25px 50px rgba(0,0,0,0.14);
}

.card-purple {
    background: var(--purple);
}

.card-orange {
    background: #df701d;
}

.card-green {
    background: var(--green);
}

.card-yellow {
    background: #e7a126;
}

.card-blue {
    background: #466f87;
}

.card-dark {
    background: #28252a;
}

.work-number {
    position: absolute;

    right: 30px;
    top: 25px;

    opacity: 0.25;

    font-size: 13px;
    font-weight: 800;
}

.work-icon {
    width: 52px;
    height: 52px;

    border: 1px solid rgba(255,255,255,0.4);

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 24px;

    margin-bottom: 60px;
}

.work-card h3 {
    font-family: "Playfair Display", serif;

    font-size: 30px;

    margin-bottom: 12px;
}

.work-card p {
    font-size: 14px;

    color: rgba(255,255,255,0.8);
}

.card-arrow {
    position: absolute;

    right: 30px;
    bottom: 30px;

    font-size: 24px;
}

.center-button {
    text-align: center;

    margin-top: 50px;
}


/* =========================================================
   STORY
========================================================= */

.story-section {
    padding: 50px 0;

    background:
        linear-gradient(
            120deg,
            var(--purple-dark),
            var(--purple)
        );

    color: white;
}

.story-grid {
    display: grid;

    grid-template-columns:
        0.9fr
        1fr;

    gap: 90px;

    align-items: center;
}

.story-content h2 {
    color: white;
}

.story-content h2 span {
    color: var(--orange-light);
}

.story-content p {
    color: rgba(255,255,255,0.76);

    font-size: 17px;

    margin-bottom: 30px;
}

.story-points {
    display: flex;

    flex-direction: column;

    gap: 18px;
}

.story-points div {
    display: flex;

    gap: 18px;

    align-items: center;
}

.story-points strong {
    width: 42px;
    height: 42px;

    border: 1px solid rgba(255,255,255,0.25);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--orange-light);

    font-size: 12px;
}

.story-points span {
    font-size: 14px;

    color: rgba(255,255,255,0.85);
}

.story-image {
    position: relative;
}

.story-image img {
    height: 570px;

    width: 100%;

    object-fit: cover;

    border-radius: 30px;
}

.story-quote {
    position: absolute;

    left: -30px;
    bottom: 35px;

    max-width: 300px;

    background: white;

    color: var(--purple);

    padding: 25px;

    border-radius: 20px;

    box-shadow: var(--shadow);

    font-size: 18px;

    font-weight: 800;

    line-height: 1.4;
}

.story-quote span {
    display: block;

    color: var(--orange);

    font-family: Georgia, serif;

    font-size: 50px;

    line-height: 0.7;
}


/* =========================================================
   PROGRAMS
========================================================= */

.programs-section {
    background: white;
}

.programs-grid {
    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 15px;
}

.program-card {
    border: 1px solid var(--border);

    border-radius: 22px;

    overflow: hidden;

    background: white;

    transition: 0.35s ease;
}

.program-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow);
}

.program-image {
    height: 230px;

    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.06);
}

.program-content {
    padding: 25px;
}

.program-content > span {
    color: var(--orange);

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.program-content h3 {
    margin: 10px 0;

    font-family: "Playfair Display", serif;

    font-size: 25px;
}

.program-content p {
    color: var(--text-light);

    font-size: 13px;

    margin-bottom: 15px;
}

.program-content a {
    color: var(--purple);

    font-size: 13px;

    font-weight: 800;
}


/* =========================================================
   PROJECTS
========================================================= */

.projects-section {
    padding: 50px 0;

    background: #f5eef8;
}

.projects-grid {
    display: grid;

    grid-template-columns:
        0.85fr
        1fr;

    gap: 90px;

    align-items: center;
}

.projects-intro h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(45px, 5vw, 67px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 25px;
}

.projects-intro h2 span {
    color: var(--purple);
}

.projects-intro p {
    color: var(--text-light);

    font-size: 17px;

    margin-bottom: 30px;
}

.project-list {
    background: white;

    border-radius: 28px;

    padding: 15px 35px;

    box-shadow: 0 25px 60px rgba(75,31,92,0.08);
}

.project-row {
    display: grid;

    grid-template-columns:
        0.9fr
        1fr;

    gap: 30px;

    padding: 24px 0;

    border-bottom: 1px solid var(--border);
}

.project-row:last-child {
    border-bottom: 0;
}

.project-row strong {
    color: var(--purple);

    font-size: 15px;
}

.project-row span {
    color: var(--text-light);

    font-size: 13px;
}


/* =========================================================
   PRESENCE
========================================================= */

.presence-section {
    background: var(--cream);
}

.presence-grid {
    display: grid;

    grid-template-columns:
        1fr
        0.9fr;

    gap: 80px;

    align-items: center;
}

.presence-map {
    display: flex;

    align-items: center;
    justify-content: center;
}

.presence-map img {
    width: 100%;

    max-width: 570px;

    filter:
        drop-shadow(
            0 25px 30px
            rgba(75,31,92,0.08)
        );
}

.presence-content p {
    color: var(--text-light);

    font-size: 17px;

    margin-bottom: 35px;
}

.reach-stats {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;

    margin-bottom: 25px;
}

.reach-stats div {
    padding: 20px;

    border-radius: 17px;

    background: white;

    border: 1px solid var(--border);
}

.reach-stats strong {
    display: block;

    color: var(--purple);

    font-size: 29px;

    line-height: 1;
}

.reach-stats span {
    color: var(--text-light);

    font-size: 11px;
}


/* =========================================================
   PRODUCTS
========================================================= */

.products-section {
    background: white;
}

.products-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.product-card {
    border-radius: 25px;

    overflow: hidden;

    background: var(--cream);

    transition: 0.35s ease;
}

.product-card:hover {
    transform: translateY(-7px);

    box-shadow: var(--shadow);
}
/* =========================================
   PRODUCT SHOWCASE
========================================= */

.products-showcase {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 50px;
    align-items: center;
    margin-top: 55px;
}

.products-showcase-image {
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: #f5eee4;
    box-shadow: 0 20px 55px rgba(48, 24, 70, 0.10);
}

.products-showcase-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.products-showcase-content {
    padding: 20px 10px;
}

.products-showcase-content > span {
    display: inline-block;
    margin-bottom: 18px;
    color: #f28b18;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.products-showcase-content h3 {
    margin: 0 0 20px;
    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
    color: #241f24;
}

.products-showcase-content h3 strong {
    display: block;
    color: #55227d;
}

.products-showcase-content p {
    margin: 0 0 28px;
    color: #665d68;
    font-size: 16px;
    line-height: 1.8;
}

.products-showcase-meta {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 28px;
}

.products-showcase-meta strong {
    font-size: 38px;
    color: #55227d;
    font-weight: 800;
}

.products-showcase-meta span {
    color: #665d68;
    font-size: 14px;
}
/* =========================================================
   PRODUCT CATALOGUE CARDS
   Prevent impact/about card styles from affecting products
========================================================= */

.product-card {
    position: relative;
    background: #ffffff !important;
    color: #333333 !important;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 22px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}


/* ---------------------------------------------------------
   PRODUCT IMAGE
--------------------------------------------------------- */

.product-card .catalogue-product-image,
.product-card .product-image {
    position: relative;
    width: 100%;
    height: 245px;
    overflow: hidden;
    background: #eeeae3;
}

.product-card .catalogue-product-image img,
.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.product-card:hover .catalogue-product-image img,
.product-card:hover .product-image img {
    transform: scale(1.05);
}


/* ---------------------------------------------------------
   PRODUCT CONTENT
--------------------------------------------------------- */

.product-card .catalogue-product-content,
.product-card .product-content {
    padding: 22px;
    background: #ffffff !important;
}


/* ---------------------------------------------------------
   CATEGORY LABEL
--------------------------------------------------------- */

.product-card .product-category,
.product-card .catalogue-product-category {
    display: block;
    margin-bottom: 12px;
    color: #777777 !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* ---------------------------------------------------------
   PRODUCT TITLE
--------------------------------------------------------- */

.product-card h3,
.product-card .catalogue-product-content h3,
.product-card .product-content h3 {
    margin: 0 0 10px;
    color: #54205f !important;
    font-size: 24px;
    line-height: 1.25;
}


/* ---------------------------------------------------------
   PRODUCT DESCRIPTION
--------------------------------------------------------- */

.product-card p,
.product-card .catalogue-product-description,
.product-card .product-description {
    color: #666666 !important;
    font-size: 14px;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   PRODUCT TAGS / VARIANTS
--------------------------------------------------------- */

.product-card .catalogue-product-tags,
.product-card .product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 15px;
}

.product-card .catalogue-product-tags span,
.product-card .product-tags span {
    display: inline-block;
    padding: 5px 9px;
    border-radius: 20px;
    background: #f3f1ed !important;
    color: #555555 !important;
    font-size: 11px;
}


/* ---------------------------------------------------------
   VIEW PRODUCT
--------------------------------------------------------- */

.product-card a,
.product-card .catalogue-enquire,
.product-card .product-view-link {
    color: #54205f !important;
}

.product-card .catalogue-enquire,
.product-card .product-view-link {
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}


/* ---------------------------------------------------------
   IMPORTANT:
   OVERRIDE IMPACT CARD TEXT COLOURS
--------------------------------------------------------- */

.product-card.about-focus-card,
.product-card.about-focus-card h3,
.product-card.about-focus-card p,
.product-card.about-focus-card span {
    color: inherit;
}

.product-card.about-focus-card {
    background: #ffffff !important;
}

.product-card.about-focus-card h3 {
    color: #54205f !important;
}

.product-card.about-focus-card p {
    color: #666666 !important;
}

.product-card.about-focus-card > span {
    color: #777777 !important;
}
/* ================================
   MEDIA SLIDER
================================ */

.media-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 45px;
}

.media-slider {
    display: flex;
    gap: 24px;
    width: 100%;
    overflow: hidden;
    scroll-behavior: smooth;
}

.media-slide {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
}

.media-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.13);
}

.media-card img {
    width: 100%;
    height: 300px;
    display: block;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform .4s ease;
}

.media-card:hover img {
    transform: scale(1.025);
}

.media-caption {
    padding: 18px 20px 20px;
}

.media-caption span {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 7px;
    opacity: .65;
}

.media-caption strong {
    display: block;
    font-size: 17px;
    line-height: 1.35;
}


/* ================================
   ARROWS
================================ */

.media-arrow {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 50%;
    background: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
    z-index: 2;
}

.media-arrow:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}


/* ================================
   DOTS
================================ */

.media-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 25px;
}

.media-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all .25s ease;
}

.media-dot.active {
    width: 22px;
    border-radius: 10px;
    background: currentColor;
}


/* ================================
   LIGHTBOX
================================ */

.media-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.88);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    z-index: 99999;
}

.media-lightbox.active {
    display: flex;
}

.media-lightbox img {
    max-width: 92vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 70px rgba(0,0,0,.4);
}

.media-lightbox-close {
    position: absolute;
    top: 18px;
    right: 25px;
    width: 45px;
    height: 45px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    color: #fff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}


/* ================================
   MOBILE
================================ */

@media (max-width: 900px) {

    .media-slide {
        flex: 0 0 calc((100% - 24px) / 2);
    }

    .media-card img {
        height: 280px;
    }

}

@media (max-width: 600px) {

    .media-slider-wrap {
        gap: 8px;
    }

    .media-slide {
        flex: 0 0 100%;
    }

    .media-card img {
        height: 340px;
    }

    .media-arrow {
        flex: 0 0 36px;
        width: 36px;
        height: 36px;
        font-size: 25px;
    }

    .media-lightbox {
        padding: 15px;
    }

}
/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

    .products-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .products-showcase-content {
        padding: 0;
    }

}

@media (max-width: 600px) {

    .products-showcase-image {
        border-radius: 20px;
    }

    .products-showcase-content h3 {
        font-size: 36px;
    }

}
.product-image {
    height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f1e8;
    border-radius: 24px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.product-card:hover img {
    transform: scale(1.06);
}

.product-info {
    padding: 25px;
}

.product-info span {
    font-size: 11px;

    color: var(--orange);

    font-weight: 800;

    text-transform: uppercase;
}

.product-info h3 {
    font-family: "Playfair Display", serif;

    font-size: 27px;

    margin: 7px 0 12px;
}

.product-info a {
    color: var(--purple);

    font-size: 13px;

    font-weight: 800;
}


/* =========================================================
   STUDIO
========================================================= */

.studio-section {
    position: relative;

    padding: 50px 0;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            #32143f,
            #5d256a
        );

    color: white;
}

.studio-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -180px;
    top: -180px;

    border-radius: 50%;

    background: rgba(242,138,26,0.25);
}

.studio-grid {
    display: grid;

    grid-template-columns:
        0.9fr
        1fr;

    gap: 80px;

    align-items: center;

    position: relative;
    z-index: 2;
}

.studio-content h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(45px, 5vw, 68px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 25px;
}

.studio-content h2 span {
    color: var(--orange-light);
}

.studio-content p {
    max-width: 600px;

    color: rgba(255,255,255,0.78);

    font-size: 17px;

    margin-bottom: 25px;
}

.studio-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 30px;
}

.studio-tags span {
    padding: 9px 16px;

    border-radius: 50px;

    border: 1px solid rgba(255,255,255,0.2);

    font-size: 12px;
}

.studio-image {
    position: relative;
}

.studio-image > img {
    width: 100%;

    height: 520px;

    object-fit: cover;

    border-radius: 30px;
}

.upcoming-card {
    position: absolute;

    right: -30px;
    bottom: 30px;

    width: 250px;

    padding: 25px;

    border-radius: 20px;

    background: white;

    color: var(--purple);

    box-shadow: var(--shadow);
}

.upcoming-card small {
    display: block;

    color: var(--orange);

    font-weight: 800;

    font-size: 10px;

    letter-spacing: 2px;

    margin-bottom: 8px;
}

.upcoming-card strong {
    display: block;

    font-family: "Playfair Display", serif;

    font-size: 22px;

    line-height: 1.25;

    margin-bottom: 12px;
}

.upcoming-card a {
    font-size: 12px;

    font-weight: 800;
}


/* =========================================================
   PARTNERS
========================================================= */

.partners-section {
    background: var(--cream);
}

.logo-wall {
    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    border: 1px solid var(--border);

    border-radius: 25px;

    overflow: hidden;

    background: white;
}

.partner-logo {
    height: 145px;

    padding: 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-right: 1px solid var(--border);

    border-bottom: 1px solid var(--border);
}

.partner-logo:nth-child(4n) {
    border-right: 0;
}

.partner-logo:nth-last-child(-n+4) {
    border-bottom: 0;
}

.partner-logo img {
    max-width: 150px;
    max-height: 65px;

    object-fit: contain;

    filter: none;

    opacity: 0.75;

    transition: 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0);
    opacity: 1;

    transform: scale(1.05);
}

.partners-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-top: 25px;

    color: var(--text-light);

    font-size: 13px;
}


/* =========================================================
   STORIES
========================================================= */

.stories-section {
    background: white;
}

.stories-grid {
    display: grid;

    grid-template-columns:
        0.85fr
        1fr;

    gap: 80px;

    align-items: center;
}

.stories-content p {
    color: var(--text-light);

    font-size: 17px;
}

.testimonial-card {
    position: relative;

    padding: 55px;

    background: var(--purple);

    color: white;

    border-radius: 30px;

    box-shadow: var(--shadow);
}

.quote-mark {
    color: var(--orange);

    font-family: Georgia, serif;

    font-size: 80px;

    line-height: 0.6;

    margin-bottom: 25px;
}

.testimonial-card blockquote {
    font-family: "Playfair Display", serif;

    font-size: 27px;

    line-height: 1.45;

    margin-bottom: 35px;
}

.testimonial-author {
    display: flex;

    align-items: center;

    gap: 15px;
}

.author-avatar {
    width: 45px;
    height: 45px;

    border-radius: 50%;

    background: var(--orange);

    display: flex;

    align-items: center;
    justify-content: center;

    font-weight: 800;
}

.testimonial-author strong,
.testimonial-author span {
    display: block;
}

.testimonial-author strong {
    font-size: 13px;
}

.testimonial-author span {
    color: rgba(255,255,255,0.55);

    font-size: 11px;
}


/* =========================================================
   MEDIA
========================================================= */

.media-section {
    background: var(--cream);
}

.media-header {
    display: flex;

    align-items: end;

    justify-content: space-between;

    margin-bottom: 45px;
}

.media-header h2 {
    font-family: "Playfair Display", serif;

    font-size: 60px;

    line-height: 1;
}

.media-header h2 span {
    color: var(--purple);
}

.media-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}

.media-card {
    position: relative;

    height: 390px;

    border-radius: 24px;

    overflow: hidden;

    color: white;

    background: var(--purple);
}

.media-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.media-card:hover img {
    transform: scale(1.06);
}

.media-card::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            transparent 40%,
            rgba(35,15,42,0.9)
        );
}

.media-card div {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 25px;

    z-index: 2;
}

.media-card span,
.media-card strong {
    display: block;
}

.media-card span {
    color: var(--orange-light);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;

    font-weight: 800;

    margin-bottom: 7px;
}

.media-card strong {
    font-family: "Playfair Display", serif;

    font-size: 24px;
}


/* =========================================================
   PARTNER CTA
========================================================= */

.partner-section {
    padding: 100px 0;

    background:
        linear-gradient(
            120deg,
            var(--purple-dark),
            var(--purple)
        );

    color: white;
}

.partner-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 60px;
}

.partner-inner h2 {
    max-width: 760px;

    font-family: "Playfair Display", serif;

    font-size: clamp(43px, 5vw, 67px);

    line-height: 1.05;

    letter-spacing: -2px;
}

.partner-inner h2 span {
    color: var(--orange-light);
}

.partner-inner p {
    max-width: 750px;

    margin-top: 20px;

    color: rgba(255,255,255,0.7);

    font-size: 16px;
}

.partner-actions {
    min-width: 220px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 18px;
}

.partner-contact {
    color: rgba(255,255,255,0.8);

    font-size: 13px;

    font-weight: 700;
}

.partner-contact span {
    color: var(--orange);

    margin-left: 8px;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 70px 0 25px;

    background: #201b22;

    color: white;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1fr;

    gap: 50px;

    padding-bottom: 60px;
}

.footer-brand img {
    width: 190px;

    margin-bottom: 18px;

    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255,255,255,0.65);

    max-width: 250px;

    font-size: 14px;
}

.footer-location {
    margin-top: 20px;

    color: var(--orange);

    font-size: 12px;
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-column h4 {
    margin-bottom: 12px;

    color: white;

    font-size: 13px;
}

.footer-column a {
    color: rgba(255,255,255,0.55);

    font-size: 12px;

    transition: 0.2s ease;
}

.footer-column a:hover {
    color: var(--orange);
}

.footer-bottom {
    padding-top: 25px;

    border-top: 1px solid rgba(255,255,255,0.1);

    display: flex;

    justify-content: space-between;

    color: rgba(255,255,255,0.4);

    font-size: 11px;
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .main-nav {
        gap: 18px;
    }

    .main-nav a {
        font-size: 12px;
    }

    .hero-grid,
    .about-grid,
    .story-grid,
    .projects-grid,
    .presence-grid,
    .studio-grid,
    .stories-grid {
        gap: 50px;
    }

    .programs-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .work-grid {
        grid-template-columns: repeat(2,1fr);
    }

}


@media (max-width: 800px) {

    .container {
        width: min(
            var(--container),
            calc(100% - 32px)
        );
    }

    .header-inner {
        height: 75px;
    }

    .brand img {
        width: 165px;
    }

    .menu-toggle {
        display: flex;

        width: 45px;
        height: 45px;

        border: 0;

        background: var(--cream);

        border-radius: 50%;

        flex-direction: column;

        align-items: center;
        justify-content: center;

        gap: 5px;

        cursor: pointer;
    }

    .menu-toggle span {
        width: 19px;
        height: 2px;

        background: var(--purple);
    }

    .main-nav {
        position: absolute;

        left: 16px;
        right: 16px;
        top: 82px;

        padding: 20px;

        background: white;

        border-radius: 20px;

        box-shadow: var(--shadow);

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 8px;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 12px;
    }

    .nav-cta {
        text-align: center;
        margin-top: 5px;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;

        padding-top: 90px;
        padding-bottom: 100px;
    }

    .hero h1 {
        font-size: clamp(48px, 12vw, 70px);
    }

    .hero-image {
        height: 430px;
    }

    .card-top {
        right: 15px;
    }

    .card-bottom {
        left: 15px;
    }

    .impact-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .impact-item {
        border-bottom: 1px solid var(--border);
    }

    .impact-item:nth-child(2n) {
        border-right: 0;
    }

    .about-grid,
    .story-grid,
    .projects-grid,
    .presence-grid,
    .studio-grid,
    .stories-grid {
        grid-template-columns: 1fr;
    }

    .about-image img,
    .story-image img {
        height: 450px;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .products-grid,
    .media-grid {
        grid-template-columns: 1fr;
    }

    .logo-wall {
        grid-template-columns: repeat(2,1fr);
    }

    .partner-logo:nth-child(4n) {
        border-right: 1px solid var(--border);
    }

    .partner-logo:nth-child(2n) {
        border-right: 0;
    }

    .partner-logo:nth-last-child(-n+4) {
        border-bottom: 1px solid var(--border);
    }

    .partner-logo:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .partner-inner {
        flex-direction: column;

        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: repeat(2,1fr);
    }

}


@media (max-width: 520px) {

    .section {
        padding: 80px 0;
    }

    .hero-grid {
        padding-top: 65px;
    }

    .hero-meta {
        flex-direction: column;

        align-items: flex-start;
    }

    .hero-meta i {
        display: none;
    }

    .hero-image {
        height: 350px;
    }

    .hero-floating-card {
        transform: scale(0.88);
    }

    .impact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .impact-item strong {
        font-size: 30px;
    }

    .about-image img,
    .story-image img,
    .studio-image > img {
        height: 360px;
    }

    .image-label {
        right: 15px;
    }

    .story-quote,
    .upcoming-card {
        right: 15px;
        left: 15px;

        bottom: 15px;

        max-width: none;
    }

    .reach-stats {
        grid-template-columns: 1fr;
    }

    .project-list {
        padding: 10px 20px;
    }

    .project-row {
        grid-template-columns: 1fr;

        gap: 5px;
    }

    .logo-wall {
        grid-template-columns: 1fr 1fr;
    }

    .partner-logo {
        height: 120px;

        padding: 15px;
    }

    .partner-logo img {
        max-width: 110px;
    }

    .partners-bottom,
    .media-header {
        flex-direction: column;

        align-items: flex-start;

        gap: 15px;
    }

    .media-header h2 {
        font-size: 45px;
    }

    .testimonial-card {
        padding: 35px 25px;
    }

    .testimonial-card blockquote {
        font-size: 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 8px;
    }

}
/* =========================================================
   ABOUT PAGE
========================================================= */


/* =========================================================
   ABOUT HERO
========================================================= */

.about-page-hero {

    position: relative;

    padding: 90px 0 100px;

    background:
        linear-gradient(
            120deg,
            #351640 0%,
            #512061 50%,
            #814064 100%
        );

    color: white;

    overflow: hidden;
}


.about-page-hero::after {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -200px;
    top: -220px;

    border-radius: 50%;

    background:
        rgba(242,138,26,0.22);

}


.about-page-hero-grid {

    display: grid;

    grid-template-columns:
        0.95fr
        1fr;

    gap: 80px;

    align-items: center;

    position: relative;

    z-index: 2;
}


.about-page-hero-content {

    max-width: 650px;
}


.about-page-hero h1 {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(48px, 5.5vw, 78px);

    line-height: 1;

    letter-spacing: -3px;

    margin-bottom: 28px;
}


.about-page-hero h1 em {

    color: var(--orange-light);

    font-style: normal;
}


.about-page-hero-content > p {

    max-width: 620px;

    font-size: 17px;

    line-height: 1.8;

    color:
        rgba(255,255,255,0.78);

    margin-bottom: 30px;
}


.about-page-meta {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    color:
        rgba(255,255,255,0.62);

    font-size: 12px;
}


.about-page-meta i {

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background:
        var(--orange);
}


.about-page-hero-image {

    position: relative;
}


.about-page-hero-image img {

    width: 100%;

    height: 540px;

    object-fit: cover;

    border-radius: 30px;

    border:
        6px solid
        rgba(255,255,255,0.12);

    box-shadow:
        0 30px 80px
        rgba(0,0,0,0.25);
}



/* =========================================================
   WHO WE ARE
========================================================= */

.about-who-section {

    background:
        var(--white);
}


.about-who-grid {

    display: grid;

    grid-template-columns:
        1fr
        0.8fr;

    gap: 90px;

    align-items: center;
}


.about-who-content h2 {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(42px, 5vw, 64px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 28px;
}


.about-who-content h2 span {

    color:
        var(--purple);
}


.about-who-content p {

    color:
        var(--text-light);

    font-size: 16px;

    margin-bottom: 20px;

    max-width: 700px;
}



/* =========================================================
   IDENTITY CARD
========================================================= */

.about-identity-card {

    padding: 45px;

    background:
        var(--cream);

    border:
        1px solid
        var(--border);

    border-radius: 28px;

    box-shadow:
        0 25px 60px
        rgba(75,31,92,0.07);
}


.about-identity-label {

    color:
        var(--orange);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 18px;
}


.about-identity-card h3 {

    font-family:
        "Playfair Display",
        serif;

    color:
        var(--purple);

    font-size: 32px;

    margin-bottom: 20px;
}


.about-identity-divider {

    width: 55px;

    height: 3px;

    background:
        var(--orange);

    margin-bottom: 22px;
}


.about-identity-card p {

    color:
        var(--text-light);

    font-size: 14px;

    margin-bottom: 8px;
}


.about-identity-card strong {

    display: block;

    color:
        var(--text);

    font-size: 18px;

    line-height: 1.45;

    margin-bottom: 25px;
}


.about-identity-note {

    padding-top: 20px;

    border-top:
        1px solid
        var(--border);
}



/* =========================================================
   STORY
========================================================= */

.about-story-section {

    background:
        var(--cream);
}


.about-story-grid {

    display: grid;

    grid-template-columns:
        1fr
        0.95fr;

    gap: 90px;

    align-items: center;
}


.about-story-image {

    position: relative;
}


.about-story-image > img {

    width: 100%;

    height: 560px;

    object-fit: cover;

    border-radius: 30px;
}


.about-story-badge {

    position: absolute;

    right: -25px;

    bottom: 35px;

    padding: 20px 25px;

    background:
        var(--orange);

    color: white;

    border-radius: 20px;

    box-shadow:
        var(--shadow);

    display: flex;

    flex-direction: column;
}


.about-story-badge strong {

    font-size: 38px;

    line-height: 1;
}


.about-story-badge span {

    font-size: 11px;

    margin-top: 5px;
}


.about-story-content h2 {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(42px, 5vw, 64px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 25px;
}


.about-story-content h2 span {

    color:
        var(--purple);
}


.about-story-content p {

    color:
        var(--text-light);

    font-size: 16px;

    margin-bottom: 18px;
}



/* =========================================================
   VISION / MISSION
========================================================= */

.about-vision-section {

    padding: 50px 0;

    background:
        white;
}


.vision-mission-grid {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 22px;
}


.vision-card {

    position: relative;

    padding: 45px;

    border-radius: 28px;

    background:
        var(--purple);

    color: white;

    overflow: hidden;
}


.vision-card::after {

    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -100px;
    bottom: -110px;

    border-radius: 50%;

    background:
        rgba(242,138,26,0.20);
}


.mission-card {

    background:
        var(--green);
}


.vision-card-number {

    position: absolute;

    right: 30px;
    top: 25px;

    font-size: 12px;

    opacity: 0.45;

    font-weight: 800;
}


.vision-card-icon {

    width: 55px;
    height: 55px;

    border:
        1px solid
        rgba(255,255,255,0.35);

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 24px;

    margin-bottom: 55px;
}


.vision-card h3 {

    font-family:
        "Playfair Display",
        serif;

    font-size: 32px;

    margin-bottom: 15px;

    position: relative;

    z-index: 2;
}


.vision-card p {

    color:
        rgba(255,255,255,0.78);

    font-size: 15px;

    line-height: 1.8;

    position: relative;

    z-index: 2;
}



/* =========================================================
   VALUES
========================================================= */

.values-section {

    background:
        var(--cream);
}


.values-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


.value-card {

    padding: 32px;

    background:
        white;

    border:
        1px solid
        var(--border);

    border-radius: 22px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.value-card:hover {

    transform:
        translateY(-6px);

    box-shadow:
        var(--shadow);
}


.value-card > span {

    display: block;

    color:
        var(--orange);

    font-size: 11px;

    font-weight: 800;

    margin-bottom: 35px;
}


.value-card h3 {

    font-family:
        "Playfair Display",
        serif;

    color:
        var(--purple);

    font-size: 25px;

    margin-bottom: 12px;
}


.value-card p {

    color:
        var(--text-light);

    font-size: 13px;

    line-height: 1.7;
}



/* =========================================================
   AREAS OF WORK
========================================================= */

.about-work-section {

    padding: 50px 0;

    background:
        white;
}


.about-focus-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


.about-focus-card {

    min-height: 280px;

    position: relative;

    padding: 32px;

    border-radius: 25px;

    color: white;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.about-focus-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 25px 50px
        rgba(0,0,0,0.15);
}


.about-focus-card > span {

    position: absolute;

    right: 28px;
    top: 24px;

    font-size: 12px;

    opacity: 0.35;

    font-weight: 800;
}


.about-focus-card h3 {

    font-family:
        "Playfair Display",
        serif;

    font-size: 28px;

    margin-top: 65px;

    margin-bottom: 12px;
}


.about-focus-card p {

    color:
        rgba(255,255,255,0.78);

    font-size: 13px;

    max-width: 330px;
}


.about-focus-card b {

    position: absolute;

    left: 32px;
    bottom: 28px;

    font-size: 12px;
}


.focus-purple {

    background:
        var(--purple);
}


.focus-orange {

    background:
        #df701d;
}


.focus-green {

    background:
        var(--green);
}


.focus-yellow {

    background:
        #e7a126;
}


.focus-blue {

    background:
        #466f87;
}


.focus-dark {

    background:
        #28252a;
}



/* =========================================================
   DIRECTOR MESSAGE
========================================================= */

.director-section {

    background:
        var(--cream);
}


.director-grid {

    display: grid;

    grid-template-columns:
        0.8fr
        1fr;

    gap: 90px;

    align-items: center;
}


.director-image {

    position: relative;
}


.director-image-placeholder {

    width: 100%;

    height: 520px;

    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            #eadfe9,
            #f7eee2
        );

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    color:
        var(--purple);

    border:
        1px solid
        var(--border);
}


.director-image-placeholder span {

    font-family:
        "Playfair Display",
        serif;

    font-size: 34px;

    font-weight: 700;
}


.director-image-placeholder small {

    color:
        var(--text-light);

    font-size: 12px;

    margin-top: 8px;
}


.director-content h2 {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(42px, 5vw, 64px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 28px;
}


.director-content h2 span {

    color:
        var(--purple);
}


.director-content blockquote {

    margin: 0 0 25px;

    padding-left: 25px;

    border-left:
        4px solid
        var(--orange);

    color:
        var(--purple);

    font-family:
        "Playfair Display",
        serif;

    font-size: 22px;

    line-height: 1.5;
}


.director-content > p {

    color:
        var(--text-light);

    font-size: 15px;

    margin-bottom: 28px;
}


.director-signature {

    display: flex;

    flex-direction: column;
}


.director-signature strong {

    color:
        var(--purple);

    font-size: 14px;
}


.director-signature span {

    color:
        var(--text-light);

    font-size: 12px;
}



/* =========================================================
   APPROACH
========================================================= */

.about-approach-section {

    padding: 50px 0;

    background:
        linear-gradient(
            120deg,
            var(--purple-dark),
            var(--purple)
        );

    color: white;
}


.about-approach-section .section-heading p {

    color:
        rgba(255,255,255,0.72);
}


.about-approach-section .eyebrow {

    color:
        var(--orange-light);
}


.approach-grid {

    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 15px;
}


.approach-step {

    padding: 28px 22px;

    min-height: 260px;

    border:
        1px solid
        rgba(255,255,255,0.14);

    border-radius: 22px;

    background:
        rgba(255,255,255,0.05);

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.approach-step:hover {

    transform:
        translateY(-6px);

    background:
        rgba(255,255,255,0.09);
}


.approach-step > strong {

    display: flex;

    width: 42px;
    height: 42px;

    border:
        1px solid
        rgba(255,255,255,0.25);

    border-radius: 50%;

    align-items: center;
    justify-content: center;

    color:
        var(--orange-light);

    font-size: 12px;

    margin-bottom: 40px;
}


.approach-step h3 {

    font-family:
        "Playfair Display",
        serif;

    font-size: 24px;

    margin-bottom: 12px;
}


.approach-step p {

    color:
        rgba(255,255,255,0.68);

    font-size: 12px;

    line-height: 1.7;
}



/* =========================================================
   SDG
========================================================= */

.about-sdg-section {

    padding: 90px 0;

    background:
        var(--cream);
}


.about-sdg-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 60px;

    padding: 65px;

    border-radius: 30px;

    background:
        var(--purple);

    color: white;

    overflow: hidden;

    position: relative;
}


.about-sdg-inner::after {

    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: -170px;
    top: -180px;

    border-radius: 50%;

    background:
        rgba(242,138,26,0.2);
}


.about-sdg-content {

    position: relative;

    z-index: 2;
}


.about-sdg-content h2 {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(42px, 5vw, 62px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 20px;
}


.about-sdg-content h2 span {

    color:
        var(--orange-light);
}


.about-sdg-content p {

    max-width: 650px;

    color:
        rgba(255,255,255,0.72);

    font-size: 15px;

    margin-bottom: 25px;
}


.about-sdg-number {

    min-width: 190px;

    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;
}


.about-sdg-number strong {

    font-size: 58px;

    line-height: 1;

    color:
        var(--orange-light);
}


.about-sdg-number span {

    margin-top: 10px;

    color:
        rgba(255,255,255,0.65);

    font-size: 12px;
}



/* =========================================================
   FOOTER LEGAL NAME
========================================================= */

.footer-legal-name {

    max-width: 270px;

    margin-top: 18px;

    color:
        rgba(255,255,255,0.45);

    font-size: 10px;

    line-height: 1.6;
}



/* =========================================================
   ABOUT RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .about-page-hero-grid,
    .about-who-grid,
    .about-story-grid,
    .director-grid {

        gap: 50px;

    }


    .approach-grid {

        grid-template-columns:
            repeat(3, 1fr);

    }

}


@media (max-width: 800px) {

    .about-page-hero {

        padding:
            70px 0 80px;

    }


    .about-page-hero-grid,
    .about-who-grid,
    .about-story-grid,
    .director-grid {

        grid-template-columns:
            1fr;

    }


    .about-page-hero-image {

        order: -1;

    }


    .about-page-hero-image img {

        height: 430px;

    }


    .about-story-image > img {

        height: 450px;

    }


    .vision-mission-grid {

        grid-template-columns:
            1fr;

    }


    .values-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .about-focus-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .approach-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .director-image-placeholder {

        height: 430px;

    }


    .about-sdg-inner {

        padding: 45px 35px;

        flex-direction: column;

        align-items: flex-start;

    }


    .about-sdg-number {

        align-items: flex-start;

    }

}


@media (max-width: 520px) {

    .about-page-hero h1 {

        font-size:
            clamp(45px, 12vw, 62px);

    }


    .about-page-meta {

        flex-direction:
            column;

        align-items:
            flex-start;

    }


    .about-page-meta i {

        display:
            none;

    }


    .about-page-hero-image img {

        height: 350px;

    }


    .about-identity-card {

        padding: 30px;

    }


    .about-story-image > img {

        height: 360px;

    }


    .about-story-badge {

        right: 15px;

        bottom: 15px;

    }


    .values-grid,
    .about-focus-grid,
    .approach-grid {

        grid-template-columns:
            1fr;

    }


    .vision-card {

        padding: 32px;

    }


    .director-image-placeholder {

        height: 360px;

    }


    .director-content blockquote {

        font-size: 21px;

    }


    .about-sdg-inner {

        padding: 35px 25px;

    }


    .about-sdg-number strong {

        font-size: 48px;

    }

}
/* =========================================================
   FOOTER CONTACT ICONS
========================================================= */

.footer-contact .contact-icon {

    width: 16px;
    height: 18px;

    flex: 0 0 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--orange);

}


.footer-contact .contact-icon svg {

    width: 16px;
    height: 16px;

    display: block;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;

    stroke-linejoin: round;

}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.footer-social .social-links {

    display: flex;

    align-items: center;

    gap: 9px;

}


.footer-social .social-links a {

    width: 32px;
    height: 32px;

    padding: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.16);

    border-radius: 50%;

    color: rgba(255,255,255,0.68);

    background: transparent;

}


.footer-social .social-links svg {

    width: 15px;
    height: 15px;

    display: block;

    fill: currentColor;

    stroke: currentColor;

}


/* Instagram */

.footer-social .social-links svg rect {

    fill: none;

    stroke: currentColor;

    stroke-width: 1.7;

}


.footer-social .social-links svg circle {

    fill: none;

    stroke: currentColor;

    stroke-width: 1.7;

}


.footer-social .social-links svg .social-fill {

    fill: currentColor;

    stroke: none;

}


/* YouTube */

.footer-social .social-links svg .social-cutout {

    fill: #211d22;

    stroke: none;

}


/* Hover */

.footer-social .social-links a:hover {

    color: #ffffff;

    background: var(--purple);

    border-color: var(--purple);

    transform: translateY(-2px);

}
/* =========================================================
   ABOUT PAGE - COMPACT FLOWING IMAGE LAYOUT
========================================================= */


/* ---------------------------------------------------------
   GENERAL FLOW CONTENT
--------------------------------------------------------- */

.about-flow-content {
    display: block;
}


/* ---------------------------------------------------------
   FLOATING IMAGE
--------------------------------------------------------- */

.about-flow-image {
    display: block;

    width: 390px;
    max-width: 42%;

    height: auto;

    border-radius: 20px;

    margin-top: 0;
    margin-bottom: 24px;

    object-fit: cover;
}


/* LEFT FLOAT */

.about-flow-image-left {
    float: left;

    margin-right: 42px;
}


/* RIGHT FLOAT */

.about-flow-image-right {
    float: right;

    margin-left: 42px;
}


/* ---------------------------------------------------------
   JOURNEY
--------------------------------------------------------- */

.about-story-content {
    display: block;
}


/* ---------------------------------------------------------
   FOUNDER
--------------------------------------------------------- */

.founder-flow-image {
    width: 360px;
    max-width: 40%;

    margin-right: 45px;
}


/* ---------------------------------------------------------
   IDENTITY CARD - FLOAT RIGHT
--------------------------------------------------------- */

.about-identity-float {
    float: right;

    width: 360px;
    max-width: 38%;

    margin: 0 0 30px 50px;
}


/* ---------------------------------------------------------
   CLEAR FLOATS
--------------------------------------------------------- */

.about-flow-content::after,
.about-who-content::after {
    content: "";
    display: table;
    clear: both;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .about-flow-image {
        width: 330px;
        max-width: 42%;
    }


    .founder-flow-image {
        width: 320px;
        max-width: 40%;
    }


    .about-identity-float {
        width: 320px;
        max-width: 40%;

        margin-left: 35px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    /* Images stop floating on mobile */

    .about-flow-image,
    .about-flow-image-left,
    .about-flow-image-right {

        float: none;

        width: 100%;
        max-width: 100%;

        margin: 0 0 28px 0;

    }


    /* Founder image */

    .founder-flow-image {

        float: none;

        width: 100%;
        max-width: 100%;

        margin: 0 0 28px 0;

    }


    /* Identity card */

    .about-identity-float {

        float: none;

        width: 100%;
        max-width: 100%;

        margin: 0 0 35px 0;

    }

}
/* =========================================================
   OUR WORK - COMPACT FLOWING CONTENT
========================================================= */

.about-work-flow {
    display: block;
}


/* IMAGE */

.about-work-flow-image {
    width: 390px;
    max-width: 42%;
    height: auto;

    display: block;

    margin-top: 0;
    margin-bottom: 25px;

    border-radius: 20px;

    object-fit: cover;
}


/* IMAGE LEFT */

.about-work-flow-image-left {
    float: left;
    margin-right: 42px;
}


/* IMAGE RIGHT */

.about-work-flow-image-right {
    float: right;
    margin-left: 42px;
}


/* CLEAR FLOAT */

.about-work-flow::after {
    content: "";
    display: table;
    clear: both;
}


/* =========================================================
   STORY POINTS
========================================================= */

.about-work-flow .story-points {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;

    margin-top: 28px;
    margin-bottom: 10px;
}


/*
 * A / B / C हटाने के बाद
 * points simple text blocks रहेंगे.
 */

.about-work-flow .story-points > div {
    display: flex;
    align-items: center;
    gap: 10px;
}


.about-work-flow .story-points strong {
    display: none;
}


.about-work-flow .story-points span {
    font-size: 14px;
    color: #665d68;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .about-work-flow-image,
    .about-work-flow-image-left,
    .about-work-flow-image-right {

        float: none;

        width: 100%;
        max-width: 100%;

        margin: 0 0 28px 0;

    }


    .about-work-flow .story-points {
        display: block;
    }


    .about-work-flow .story-points > div {
        margin-bottom: 12px;
    }

}
/* =========================================================
   PROJECTS - 4 COLUMN FOCUS GRID
   Only affects Projects page
========================================================= */

.projects-focus-grid {
    grid-template-columns: repeat(4, 1fr);
}


/* TABLET */

@media (max-width: 1100px) {

    .projects-focus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* MOBILE */

@media (max-width: 700px) {

    .projects-focus-grid {
        grid-template-columns: 1fr;
    }

}
/* =========================================================
   PROJECTS PAGE - CUSTOM GRIDS
   These classes are only for projects.php
========================================================= */


/* =========================================================
   01. EXPERIENCE AT A GLANCE
   4 cards = 4 columns
========================================================= */

.projects-focus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}


/* =========================================================
   02. EMPLOYER NETWORK
   6 cards = 3 columns
========================================================= */

.projects-employer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 36px;
}

.projects-employer-grid .about-identity-card {
    height: 100%;
    padding: 30px;
}

.projects-employer-grid .about-identity-card h3 {
    margin-bottom: 12px;
}

.projects-employer-grid .about-identity-card p {
    margin-bottom: 0;
}


@media (max-width: 1000px) {

    .projects-employer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 700px) {

    .projects-employer-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
   03. PROJECT DELIVERY CAPABILITY
   6 cards = 3 columns
========================================================= */

.projects-delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 38px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .projects-focus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-employer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-delivery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .projects-focus-grid,
    .projects-employer-grid,
    .projects-delivery-grid {
        grid-template-columns: 1fr;
    }

}