/* =========================================================
   ESEM-GROUP
   PREMIUM SPORTS & TOURISM WEBSITE
========================================================= */


/* =========================================================
   ROOT
========================================================= */

:root {
    --black: #07090c;
    --dark: #0b1016;
    --dark-2: #111820;
    --gold: #c9a45c;
    --gold-light: #e0c27d;
    --white: #f7f7f5;
    --white-soft: #eeeeea;
    --grey: #858b93;
    --grey-light: #e7e7e3;
    --border: rgba(255,255,255,0.12);

    --max-width: 1380px;

    --font-display: "Bebas Neue", sans-serif;
    --font-body: "Inter", sans-serif;

    --transition: 0.4s ease;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

ul {
    list-style: none;
}

::selection {
    background: var(--gold);
    color: var(--black);
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(92%, var(--max-width));
    margin: 0 auto;
}


/* =========================================================
   SECTION COMMON
========================================================= */

.section-light {
    background: var(--white);
    color: var(--black);
}

.section-dark {
    background: var(--black);
    color: var(--white);
}

.section-grey {
    background: #ededeb;
    color: var(--black);
}

.section-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--gold);
    text-transform: uppercase;
}

.section-header {
    max-width: 850px;
    margin-bottom: 70px;
}

.section-header.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2,
.about-text h2,
.athletes-section h2,
.investor-section h2,
.why-section h2 {
    margin-top: 20px;
    font-family: var(--font-display);
    font-size: clamp(58px, 7vw, 108px);
    line-height: 0.9;
    letter-spacing: 0.015em;
    text-transform: uppercase;
}

.section-header h2 span,
.about-text h2 span,
.athletes-section h2 span,
.investor-section h2 span,
.why-section h2 span {
    color: var(--gold);
}

.section-header p {
    margin-top: 28px;
    max-width: 680px;
    color: var(--grey);
    line-height: 1.8;
    font-size: 15px;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: rgba(7,9,12,0.96);
    backdrop-filter: blur(16px);
    border-color: rgba(255,255,255,0.08);
}

.header-inner {
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}


/* LOGO */

.brand {
    display: flex;
    align-items: center;
    gap: 9px;
    color: white;
}

.brand-main {
    font-family: var(--font-display);
    font-size: 38px;
    letter-spacing: 0.05em;
}

.brand-line {
    width: 1px;
    height: 28px;
    background: var(--gold);
}

.brand-sub {
    font-size: 10px;
    letter-spacing: 0.25em;
    font-weight: 700;
}


/* NAV */

.desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2vw, 32px);
    margin-left: auto;
}

.desktop-nav a {
    position: relative;
    color: rgba(255,255,255,0.78);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--transition);
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.desktop-nav a:hover {
    color: white;
}

.desktop-nav a:hover::after {
    width: 100%;
}


/* HEADER CTA */

.header-cta {
    border: 1px solid var(--gold);
    color: white;
    padding: 13px 18px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: var(--transition);
}

.header-cta span {
    color: var(--gold);
    margin-left: 8px;
}

.header-cta:hover {
    background: var(--gold);
    color: var(--black);
}


/* MOBILE BUTTON */

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    width: 42px;
    height: 42px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 1px;
    margin: 6px auto;
    background: white;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* MOBILE NAV */

.mobile-nav {
    display: none;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: var(--black);
    color: white;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    transition: transform 7s ease;
}

.hero-slide.active .hero-image img {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(0,0,0,0.88) 0%,
            rgba(0,0,0,0.58) 48%,
            rgba(0,0,0,0.18) 100%),
        linear-gradient(0deg,
            rgba(0,0,0,0.68),
            transparent 55%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding-top: 210px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.28em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 25px;
}

.hero-number {
    position: absolute;
    top: 190px;
    right: 0;
    font-family: var(--font-display);
    font-size: 40px;
    color: rgba(255,255,255,0.25);
}

.hero-number span {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.1em;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(80px, 12vw, 190px);
    line-height: 0.78;
    letter-spacing: 0.02em;
    margin-bottom: 30px;
}

.hero-content h1 span {
    color: var(--gold);
}

.hero-content h2 {
    font-family: var(--font-display);
    font-size: clamp(34px, 4.5vw, 66px);
    line-height: 0.92;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 28px;
}

.hero-content p {
    max-width: 650px;
    color: rgba(255,255,255,0.78);
    line-height: 1.8;
    font-size: 15px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-top: 35px;
    flex-wrap: wrap;
}


/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-height: 52px;
    padding: 0 25px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.45);
    color: white;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn.large {
    min-height: 62px;
    padding: 0 35px;
}


/* HERO CONTROLS */

.hero-controls {
    position: absolute;
    z-index: 5;
    bottom: 42px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slider-progress {
    display: flex;
    gap: 8px;
}

.progress-bar {
    display: block;
    width: 65px;
    height: 2px;
    background: rgba(255,255,255,0.25);
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateX(-100%);
}

.progress-bar.active::after {
    animation: progress 6s linear forwards;
}

@keyframes progress {
    to {
        transform: translateX(0);
    }
}

.slider-arrows {
    display: flex;
    gap: 8px;
}

.slider-arrows button {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.slider-arrows button:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.hero-scroll {
    position: absolute;
    z-index: 5;
    right: 32px;
    bottom: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    writing-mode: vertical-rl;
    color: rgba(255,255,255,0.55);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.scroll-line {
    width: 1px;
    height: 55px;
    background: var(--gold);
}


/* =========================================================
   INTRO
========================================================= */

.intro-section {
    padding: 150px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 0.3fr 1fr;
    gap: 80px;
}

.intro-main {
    max-width: 1000px;
}

.intro-main h2 {
    font-family: var(--font-display);
    font-size: clamp(55px, 7vw, 105px);
    line-height: 0.9;
    text-transform: uppercase;
}

.intro-main h2 span {
    color: var(--gold);
}

.intro-main p {
    max-width: 700px;
    margin-top: 35px;
    color: #60656c;
    font-size: 16px;
    line-height: 1.9;
}

.text-link,
.dark-link {
    display: inline-flex;
    gap: 12px;
    margin-top: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.text-link span,
.dark-link {
    color: var(--gold);
}

.text-link:hover {
    color: var(--gold);
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    padding: 100px 0 150px;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--dark);
}

.image-frame img {
    height: 100%;
    object-fit: cover;
}

.image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background:
        radial-gradient(circle at center, #202b36, #080b0f 70%);
    color: white;
}

.image-placeholder span {
    font-family: var(--font-display);
    font-size: 80px;
    color: var(--gold);
}

.image-placeholder small {
    letter-spacing: 0.2em;
    font-size: 9px;
}

.image-caption {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--black);
    color: white;
    padding: 22px 28px;
    display: flex;
    flex-direction: column;
}

.image-caption span {
    color: var(--gold);
    font-size: 9px;
    letter-spacing: 0.2em;
}

.image-caption strong {
    font-family: var(--font-display);
    font-size: 27px;
    letter-spacing: 0.04em;
}

.about-text p {
    margin-top: 22px;
    color: #62676e;
    line-height: 1.9;
    font-size: 15px;
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    margin-top: 45px;
    padding-top: 35px;
    border-top: 1px solid #d8d8d3;
}

.vision-mission span {
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.vision-mission p {
    margin-top: 10px;
    font-size: 13px;
}


/* =========================================================
   STATS
========================================================= */

.stats-section {
    background: var(--gold);
    color: var(--black);
    padding: 70px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat {
    padding: 15px 35px;
    border-right: 1px solid rgba(0,0,0,0.2);
}

.stat:last-child {
    border-right: 0;
}

.stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 85px;
    line-height: 0.8;
}

.stat span {
    display: block;
    margin-top: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.stat small {
    display: block;
    margin-top: 8px;
    font-size: 8px;
    letter-spacing: 0.16em;
    opacity: 0.6;
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    padding: 150px 0;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: rgba(255,255,255,0.1);
}

.service-card {
    position: relative;
    background: var(--dark);
    padding: 50px;
    min-height: 600px;
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    background: #151e27;
}

.service-card.featured {
    background: #111a22;
}

.service-number {
    position: absolute;
    top: 25px;
    right: 30px;
    font-family: var(--font-display);
    font-size: 55px;
    color: rgba(255,255,255,0.08);
}

.service-icon {
    font-size: 35px;
    margin-bottom: 35px;
}

.service-card h3 {
    max-width: 450px;
    font-family: var(--font-display);
    font-size: 48px;
    line-height: 0.95;
    text-transform: uppercase;
}

.service-card > p {
    max-width: 550px;
    margin: 25px 0;
    color: var(--grey);
    font-size: 13px;
    line-height: 1.8;
}

.service-card ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px 25px;
}

.service-card li {
    position: relative;
    padding-left: 15px;
    color: #a8adb3;
    font-size: 11px;
    line-height: 1.5;
}

.service-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 4px;
    height: 4px;
    background: var(--gold);
}

.card-link {
    display: inline-block;
    margin-top: 35px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* =========================================================
   TALENT
========================================================= */

.talent-section {
    position: relative;
    min-height: 850px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
}

.talent-background {
    position: absolute;
    inset: 0;
}

.talent-background img {
    height: 100%;
    object-fit: cover;
}

.talent-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.93), rgba(0,0,0,0.62)),
        linear-gradient(0deg, rgba(0,0,0,0.75), transparent);
}

.talent-inner {
    position: relative;
    z-index: 2;
    padding: 130px 0;
}

.talent-inner h2 {
    max-width: 950px;
    margin-top: 20px;
    font-family: var(--font-display);
    font-size: clamp(70px, 9vw, 140px);
    line-height: 0.82;
    text-transform: uppercase;
}

.talent-inner h2 span {
    color: var(--gold);
}

.talent-intro {
    max-width: 620px;
    margin-top: 30px;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
}

.talent-process {
    display: flex;
    align-items: flex-start;
    margin-top: 100px;
}

.talent-step {
    flex: 1;
}

.talent-step span {
    display: block;
    font-family: var(--font-display);
    color: var(--gold);
    font-size: 40px;
}

.talent-step strong {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    letter-spacing: 0.12em;
}

.talent-step p {
    max-width: 180px;
    margin-top: 12px;
    color: rgba(255,255,255,0.55);
    font-size: 11px;
    line-height: 1.7;
}

.process-line {
    width: 45px;
    height: 1px;
    margin-top: 22px;
    background: rgba(255,255,255,0.25);
}


/* =========================================================
   ECOSYSTEM
========================================================= */

.ecosystem-section {
    padding: 150px 0;
}

.ecosystem {
    position: relative;
    max-width: 900px;
    height: 600px;
    margin: 80px auto 0;
}

.ecosystem::before,
.ecosystem::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    border: 1px solid #deded8;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.ecosystem::before {
    width: 400px;
    height: 400px;
}

.ecosystem::after {
    width: 620px;
    height: 620px;
}

.eco-center {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    transform: translate(-50%, -50%);
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: var(--black);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 20px 70px rgba(0,0,0,0.2);
}

.eco-center span {
    font-family: var(--font-display);
    color: var(--gold);
    font-size: 50px;
    line-height: 0.8;
}

.eco-center small {
    font-size: 9px;
    letter-spacing: 0.3em;
}

.eco-item {
    position: absolute;
    z-index: 4;
    padding: 12px 16px;
    background: white;
    border: 1px solid #d5d5cf;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    transition: var(--transition);
}

.eco-item:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.05);
}

.eco-top {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.eco-left-top {
    left: 8%;
    top: 22%;
}

.eco-left {
    left: 2%;
    top: 50%;
}

.eco-right-top {
    right: 8%;
    top: 22%;
}

.eco-right {
    right: 2%;
    top: 50%;
}

.eco-bottom-left {
    left: 12%;
    bottom: 10%;
}

.eco-bottom {
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.eco-bottom-right {
    right: 12%;
    bottom: 10%;
}


/* =========================================================
   AFRICA
========================================================= */

.africa-section {
    position: relative;
    min-height: 750px;
    background: var(--black);
    color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.africa-map {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.12;
}

.africa-shape {
    font-family: var(--font-display);
    font-size: clamp(250px, 45vw, 650px);
    color: transparent;
    -webkit-text-stroke: 2px var(--gold);
}

.map-point {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 25px var(--gold);
}

.point-1 { left: 46%; top: 31%; }
.point-2 { left: 52%; top: 42%; }
.point-3 { left: 47%; top: 52%; }
.point-4 { left: 57%; top: 63%; }
.point-5 { left: 49%; top: 73%; }

.africa-content {
    position: relative;
    z-index: 2;
    padding: 130px 0;
}

.africa-content h2 {
    max-width: 850px;
    margin-top: 20px;
    font-family: var(--font-display);
    font-size: clamp(70px, 9vw, 140px);
    line-height: 0.82;
    text-transform: uppercase;
}

.africa-content h2 span {
    color: var(--gold);
}

.africa-content > p {
    max-width: 650px;
    margin-top: 30px;
    color: rgba(255,255,255,0.65);
    line-height: 1.9;
}

.regions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
}

.regions span {
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 9px;
    letter-spacing: 0.12em;
}


/* =========================================================
   ATHLETES
========================================================= */

.athletes-section {
    padding: 150px 0;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.big-text {
    font-family: var(--font-display);
    color: var(--gold);
    font-size: 40px;
    line-height: 1;
    text-transform: uppercase;
}

.athlete-content > p:not(.big-text),
.investor-content > p:not(.big-text) {
    margin-top: 25px;
    color: #666b72;
    font-size: 14px;
    line-height: 1.9;
}

.check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 35px;
}

.check-grid span {
    font-size: 11px;
    color: #555a60;
}

.dark-link {
    color: var(--black);
}

.dark-link:hover {
    color: var(--gold);
}


/* =========================================================
   INVESTORS
========================================================= */

.investor-section {
    padding: 150px 0;
}

.investor-content > p:not(.big-text) {
    color: rgba(255,255,255,0.58);
}

.opportunity-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 35px;
}

.opportunity-list span {
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,0.13);
    color: rgba(255,255,255,0.7);
    font-size: 9px;
    letter-spacing: 0.08em;
}


/* =========================================================
   WHY ESEM
========================================================= */

.why-section {
    padding: 150px 0;
}

.why-list {
    border-top: 1px solid #d7d7d2;
}

.why-item {
    display: grid;
    grid-template-columns: 100px 1fr 1fr;
    gap: 30px;
    padding: 40px 0;
    border-bottom: 1px solid #d7d7d2;
    align-items: center;
    transition: var(--transition);
}

.why-item:hover {
    padding-left: 20px;
}

.why-item > span {
    font-family: var(--font-display);
    font-size: 50px;
    color: var(--gold);
}

.why-item h3 {
    font-family: var(--font-display);
    font-size: 36px;
    text-transform: uppercase;
}

.why-item p {
    color: #6c7178;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   APPROACH
========================================================= */

.approach-section {
    background: #dcdcd7;
    color: var(--black);
    padding: 150px 0;
}

.approach-title {
    max-width: 900px;
    margin-top: 25px;
    font-family: var(--font-display);
    font-size: clamp(80px, 12vw, 180px);
    line-height: 0.78;
    text-transform: uppercase;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 100px;
}

.approach-item {
    min-height: 270px;
    padding: 35px;
    background: rgba(255,255,255,0.42);
    border: 1px solid rgba(0,0,0,0.08);
}

.approach-item span {
    display: block;
    font-family: var(--font-display);
    font-size: 45px;
    color: var(--gold);
}

.approach-item strong {
    display: block;
    margin-top: 30px;
    font-size: 12px;
    letter-spacing: 0.15em;
}

.approach-item p {
    margin-top: 15px;
    color: #686d72;
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   IMPACT
========================================================= */

.impact-section {
    padding: 150px 0;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.impact-card {
    min-height: 300px;
    padding: 40px;
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}

.impact-card:hover {
    background: #151d25;
    transform: translateY(-5px);
}

.impact-card span {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 40px;
}

.impact-card h3 {
    margin-top: 45px;
    font-family: var(--font-display);
    font-size: 31px;
    text-transform: uppercase;
}

.impact-card p {
    margin-top: 15px;
    color: #858b91;
    font-size: 12px;
    line-height: 1.8;
}


/* =========================================================
   PROJECTS
========================================================= */

.projects-section {
    padding: 150px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.project-card {
    background: white;
    border: 1px solid #deded9;
    transition: var(--transition);
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.project-image {
    height: 230px;
    background-size: cover;
    background-position: center;
    background-color: #151b22;
    position: relative;
}

.project-image::after {
    content: "ESEM";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 60px;
    color: rgba(201,164,92,0.2);
}

.project-1 { background: linear-gradient(135deg, #171a1f, #31353b); }
.project-2 { background: linear-gradient(135deg, #111820, #273746); }
.project-3 { background: linear-gradient(135deg, #181714, #4a4030); }
.project-4 { background: linear-gradient(135deg, #121b1e, #254c55); }
.project-5 { background: linear-gradient(135deg, #15191e, #344b42); }
.project-6 { background: linear-gradient(135deg, #17191d, #323946); }
.project-7 { background: linear-gradient(135deg, #151619, #3d3b30); }
.project-8 { background: linear-gradient(135deg, #14171b, #48393e); }
.project-9 { background: linear-gradient(135deg, #181719, #44372f); }
.project-10 { background: linear-gradient(135deg, #15191d, #2c414c); }
.project-11 { background: linear-gradient(135deg, #161913, #405039); }

.project-info {
    padding: 28px;
}

.project-info > span {
    color: var(--gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.project-info h3 {
    margin-top: 10px;
    font-family: var(--font-display);
    font-size: 31px;
    line-height: 0.95;
    text-transform: uppercase;
}

.project-info p {
    margin-top: 10px;
    color: #7c8186;
    font-size: 11px;
}

.project-info a {
    display: inline-block;
    margin-top: 22px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.project-info a:hover {
    color: var(--gold);
}


/* =========================================================
   NEWS
========================================================= */

.news-section {
    padding: 150px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.news-card {
    position: relative;
    min-height: 280px;
    padding: 35px;
    background: white;
    border: 1px solid #deded9;
    transition: var(--transition);
}

.news-card:hover {
    background: var(--black);
    color: white;
}

.news-card > span {
    font-family: var(--font-display);
    font-size: 40px;
    color: var(--gold);
}

.news-card small {
    display: block;
    margin-top: 35px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--gold);
}

.news-card h3 {
    margin-top: 10px;
    font-family: var(--font-display);
    font-size: 32px;
    line-height: 0.95;
    text-transform: uppercase;
}

.news-card a {
    position: absolute;
    bottom: 30px;
    left: 35px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.news-card a:hover {
    color: var(--gold);
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    position: relative;
    min-height: 750px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(201,164,92,0.18), transparent 30%),
        linear-gradient(135deg, #10171e, #050708);
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.85), rgba(0,0,0,0.35));
}

.contact-inner {
    position: relative;
    z-index: 2;
    padding: 130px 0;
}

.contact-inner h2 {
    max-width: 1050px;
    margin-top: 20px;
    font-family: var(--font-display);
    font-size: clamp(75px, 11vw, 165px);
    line-height: 0.78;
    text-transform: uppercase;
}

.contact-inner h2 span {
    color: var(--gold);
}

.contact-intro {
    max-width: 720px;
    margin-top: 35px;
    color: rgba(255,255,255,0.65);
    line-height: 1.9;
    font-size: 14px;
}

.contact-inner .btn {
    margin-top: 35px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 90px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.contact-details span {
    display: block;
    color: var(--gold);
    font-size: 9px;
    letter-spacing: 0.2em;
    font-weight: 700;
}

.contact-details a,
.contact-details p {
    display: block;
    margin-top: 10px;
    color: rgba(255,255,255,0.75);
    font-size: 12px;
}

.contact-details a:hover {
    color: var(--gold);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #050607;
    color: white;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
    padding-top: 90px;
    padding-bottom: 80px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 55px;
    letter-spacing: 0.02em;
}

.footer-logo span {
    color: var(--gold);
}

.footer-brand > p {
    max-width: 300px;
    margin-top: 18px;
    color: #777d84;
    font-size: 11px;
    line-height: 1.7;
}

.footer-brand strong {
    display: block;
    margin-top: 30px;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 22px;
    line-height: 0.95;
    font-weight: 400;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-column h4 {
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-column a {
    width: fit-content;
    color: #858b91;
    font-size: 11px;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p,
.footer-bottom a {
    color: #646a70;
    font-size: 9px;
}

.footer-bottom div {
    display: flex;
    gap: 25px;
}

.footer-bottom a:hover {
    color: white;
}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;
    z-index: 900;
    right: 25px;
    bottom: 25px;
    width: 45px;
    height: 45px;
    border: 1px solid var(--gold);
    background: var(--black);
    color: var(--gold);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--black);
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {
    opacity: 1;
    transform: translateY(0);

}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1100px) {

    .desktop-nav {
        gap: 14px;
    }

    .desktop-nav a {
        font-size: 9px;
    }

    .header-cta {
        display: none;
    }

    .about-grid,
    .two-column {
        gap: 60px;
    }

    .service-card {
        padding: 40px;
    }

    .talent-process {
        flex-wrap: wrap;
        gap: 35px;
    }

    .process-line {
        display: none;
    }

    .talent-step {
        flex: 0 0 calc(33.333% - 25px);
    }

    .ecosystem {
        transform: scale(0.85);
        transform-origin: center;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 800px) {

    .container {
        width: min(91%, 680px);
    }


    /* HEADER */

    .header-inner {
        height: 75px;
    }

    .desktop-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-nav {
        display: flex;
        position: absolute;
        left: 0;
        top: 75px;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        flex-direction: column;
        background: rgba(7,9,12,0.98);
        backdrop-filter: blur(15px);
        transition: max-height 0.5s ease;
    }

    .mobile-nav.open {
        max-height: 600px;
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .mobile-nav a {
        padding: 18px 5%;
        color: white;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        font-size: 11px;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .mobile-nav a:hover {
        color: var(--gold);
    }

    .mobile-nav-cta {
        color: var(--gold) !important;
    }


    /* HERO */

    .hero {
        min-height: 680px;
    }

    .hero-content {
        padding-top: 155px;
    }

    .hero-label {
        max-width: 280px;
        line-height: 1.6;
    }

    .hero-number {
        top: 120px;
        right: 5%;
        font-size: 28px;
    }

    .hero-content h1 {
        font-size: clamp(70px, 21vw, 120px);
    }

    .hero-content h2 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 12px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .hero-controls {
        bottom: 25px;
    }

    .progress-bar {
        width: 38px;
    }

    .hero-scroll {
        display: none;
    }


    /* COMMON */

    .section-header h2,
    .about-text h2,
    .athletes-section h2,
    .investor-section h2,
    .why-section h2 {
        font-size: 60px;
    }


    /* INTRO */

    .intro-section {
        padding: 100px 0;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .intro-main h2 {
        font-size: 61px;
    }


    /* ABOUT */

    .about-section {
        padding: 60px 0 110px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .image-caption {
        right: 0;
    }

    .vision-mission {
        grid-template-columns: 1fr;
    }


    /* STATS */

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat {
        padding: 25px 15px;
        border-bottom: 1px solid rgba(0,0,0,0.2);
    }

    .stat strong {
        font-size: 65px;
    }


    /* SERVICES */

    .services-section {
        padding: 100px 0;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
        padding: 35px 25px;
    }

    .service-card h3 {
        font-size: 42px;
    }

    .service-card ul {
        grid-template-columns: 1fr;
    }


    /* TALENT */

    .talent-section {
        min-height: auto;
    }

    .talent-inner {
        padding: 100px 0;
    }

    .talent-inner h2 {
        font-size: 68px;
    }

    .talent-process {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 65px;
    }

    .talent-step {
        flex: none;
    }


    /* ECOSYSTEM */

    .ecosystem-section {
        padding: 100px 0;
    }

    .ecosystem {
        height: 430px;
        transform: scale(0.62);
        width: 700px;
        margin-left: 50%;
        transform-origin: top center;
    }


    /* AFRICA */

    .africa-section {
        min-height: 650px;
    }

    .africa-content {
        padding: 100px 0;
    }

    .africa-content h2 {
        font-size: 70px;
    }

    .africa-shape {
        font-size: 300px;
    }


    /* TWO COLUMN */

    .two-column {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .athletes-section,
    .investor-section {
        padding: 100px 0;
    }


    /* WHY */

    .why-section {
        padding: 100px 0;
    }

    .why-item {
        grid-template-columns: 60px 1fr;
        gap: 15px;
    }

    .why-item > span {
        font-size: 38px;
    }

    .why-item p {
        grid-column: 2;
    }


    /* APPROACH */

    .approach-section {
        padding: 100px 0;
    }

    .approach-title {
        font-size: 90px;
    }

    .approach-grid {
        grid-template-columns: 1fr 1fr;
        margin-top: 60px;
    }


    /* IMPACT */

    .impact-section {
        padding: 100px 0;
    }

    .impact-grid {
        grid-template-columns: 1fr 1fr;
    }


    /* PROJECTS */

    .projects-section,
    .news-section {
        padding: 100px 0;
    }

    .projects-grid {
        grid-template-columns: 1fr 1fr;
    }


    /* NEWS */

    .news-grid {
        grid-template-columns: 1fr 1fr;
    }


    /* CONTACT */

    .contact-section {
        min-height: auto;
    }

    .contact-inner {
        padding: 100px 0;
    }

    .contact-inner h2 {
        font-size: 80px;
    }

    .contact-details {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 60px;
    }


    /* FOOTER */

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 50px 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-bottom div {
        flex-wrap: wrap;
    }

}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 500px) {

    .brand-main {
        font-size: 31px;
    }

    .brand-sub {
        font-size: 8px;
    }

    .hero-content h1 {
        font-size: 68px;
    }

    .hero-content h2 {
        font-size: 34px;
    }

    .section-header h2,
    .about-text h2,
    .athletes-section h2,
    .investor-section h2,
    .why-section h2 {
        font-size: 53px;
    }

    .intro-main h2 {
        font-size: 53px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat {
        border-right: 0;
    }

    .talent-process {
        grid-template-columns: 1fr;
    }

    .talent-inner h2 {
        font-size: 58px;
    }

    .check-grid {
        grid-template-columns: 1fr;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .approach-title {
        font-size: 78px;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .contact-inner h2 {
        font-size: 67px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-image img {
        transform: none !important;
    }
}
/* =====================================================
   LOGO ESEM-GROUP
   ===================================================== */

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    width: 150px;
    height: auto;
}

.brand img {
    display: block;
    width: 150px;
    height: auto;
    max-height: 70px;
    object-fit: contain;
}
/* IMAGES DES 11 PROJETS */

.project-1 {
    background-image: url("images/project1.jpg");
}

.project-2 {
    background-image: url("images/project2.jpg");
}

.project-3 {
    background-image: url("images/project3.jpg");
}

.project-4 {
    background-image: url("images/project4.jpg");
}

.project-5 {
    background-image: url("images/project5.jpg");
}

.project-6 {
    background-image: url("images/project6.jpg");
}

.project-7 {
    background-image: url("images/project7.jpg");
}

.project-8 {
    background-image: url("images/project8.jpg");
}

.project-9 {
    background-image: url("images/project9.jpg");
}

.project-10 {
    background-image: url("images/project10.jpg");
}

.project-11 {
    background-image: url("images/project11.jpg");
}

.project-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 260px;
}
/* =====================================================
   LANGUAGE SELECTOR
   ===================================================== */

.language-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 15px;
}

.language-selector span {
    font-size: 16px;
}

.language-selector select {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.35);
    padding: 8px 10px;
    font-family: inherit;
    font-size: 12px;
    cursor: pointer;
    outline: none;
}

.language-selector select option {
    background: #07090c;
    color: #ffffff;
}

@media (max-width: 900px) {
    .language-selector {
        margin-left: auto;
        margin-right: 15px;
    }

    .language-selector select {
        padding: 7px 8px;
    }
}
