:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
    --accent: #c9a962;
    --accent-light: #e8d5a3;
    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

html.lenis {
    height: auto;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--accent);
    color: var(--bg-primary);
}

/* Preloader */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
}

.preloader.loaded {
    animation: preloaderExit 1s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

@keyframes preloaderExit {
    0% {
        clip-path: inset(0 0 0 0);
    }

    100% {
        clip-path: inset(0 0 100% 0);
    }
}

.preloader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    overflow: hidden;
    text-indent: 0.3em;
}

.preloader-logo span {
    display: inline-block;
    animation: logoReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(100%);
}

.preloader-logo span:nth-child(1) {
    animation-delay: 0.1s;
}

.preloader-logo span:nth-child(2) {
    animation-delay: 0.2s;
}

.preloader-logo span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes logoReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.preloader-bar {
    width: 200px;
    height: 1px;
    background: var(--border);
    position: relative;
    overflow: hidden;
}

.preloader-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--accent);
    animation: loadProgress 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes loadProgress {
    to {
        width: 100%;
    }
}

/* Smooth Scroll Container */
.smooth-scroll {
    will-change: transform;
}

/* Cursor */
.cursor-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.cursor {
    position: fixed;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        width 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        height 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.3s;
}

.cursor-follower.hover {
    width: 80px;
    height: 80px;
    border-color: var(--accent);
}

.cursor-follower.hover-accent {
    width: 100px;
    height: 100px;
    background: rgba(201, 169, 98, 0.1);
    border-color: var(--accent);
}

@media (max-width: 1024px) {

    .cursor,
    .cursor-follower {
        display: none;
    }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled {
    padding: 1rem 4rem;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid var(--border);
}

.nav.hidden {
    transform: translateY(-100%);
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bg-primary);
    background: var(--text-primary);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-cta:hover {
    background: var(--accent);
    transform: scale(1.05);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--text-primary);
    transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav a {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-primary);
    text-decoration: none;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.active a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav.active a:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-nav.active a:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-nav.active a:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-nav.active a:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-nav.active a:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-nav a:hover {
    color: var(--accent);
}

@media (max-width: 1024px) {
    .nav {
        padding: 1.25rem 1.5rem;
    }

    .nav.scrolled {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Hero Background Image */
.hero-image {
    position: absolute;
    inset: 0;
    background: url('images/hero-bg.png') center center / cover no-repeat;
    opacity: 0;
    transform: scale(1.1);
    animation: heroImageReveal 2s 2.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroImageReveal {
    to {
        opacity: 0.6;
        transform: scale(1);
    }
}

/* Dark gradient overlay for text readability */
.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(10, 10, 10, 0.95) 0%,
            rgba(10, 10, 10, 0.75) 30%,
            rgba(10, 10, 10, 0.5) 50%,
            rgba(10, 10, 10, 0.3) 100%);
    z-index: 1;
}

/* Blur overlay with animated reveal */
.hero-blur-overlay {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 2;
    opacity: 1;
    animation: blurReveal 3s 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes blurReveal {
    to {
        backdrop-filter: blur(0px);
        -webkit-backdrop-filter: blur(0px);
        opacity: 0;
    }
}

/* Vignette effect */
.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center,
            transparent 0%,
            transparent 40%,
            rgba(10, 10, 10, 0.4) 70%,
            rgba(10, 10, 10, 0.9) 100%);
    z-index: 3;
    pointer-events: none;
}

/* Floating particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 4;
    overflow: hidden;
    pointer-events: none;
}

.hero-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 12s infinite ease-in-out;
    box-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent);
}

.hero-particles span:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 10s;
}

.hero-particles span:nth-child(2) {
    left: 20%;
    animation-delay: 1.5s;
    animation-duration: 11s;
}

.hero-particles span:nth-child(3) {
    left: 35%;
    animation-delay: 3s;
    animation-duration: 13s;
}

.hero-particles span:nth-child(4) {
    left: 50%;
    animation-delay: 4.5s;
    animation-duration: 9s;
}

.hero-particles span:nth-child(5) {
    left: 65%;
    animation-delay: 2s;
    animation-duration: 12s;
}

.hero-particles span:nth-child(6) {
    left: 75%;
    animation-delay: 5s;
    animation-duration: 10s;
}

.hero-particles span:nth-child(7) {
    left: 85%;
    animation-delay: 0.5s;
    animation-duration: 14s;
}

.hero-particles span:nth-child(8) {
    left: 25%;
    animation-delay: 6s;
    animation-duration: 11s;
}

.hero-particles span:nth-child(9) {
    left: 55%;
    animation-delay: 3.5s;
    animation-duration: 13s;
}

.hero-particles span:nth-child(10) {
    left: 90%;
    animation-delay: 1s;
    animation-duration: 10s;
}

@keyframes particleFloat {
    0% {
        bottom: -10%;
        opacity: 0;
        transform: translateX(0) scale(0.5);
    }

    10% {
        opacity: 0.8;
        transform: translateX(10px) scale(1);
    }

    50% {
        opacity: 0.4;
        transform: translateX(-15px) scale(0.8);
    }

    90% {
        opacity: 0.6;
        transform: translateX(5px) scale(0.6);
    }

    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(-10px) scale(0.3);
    }
}

.hero-gradient {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    z-index: 5;
}

.hero-gradient-1 {
    top: -20%;
    right: -10%;
    background: var(--accent);
    animation: gradientPulse 8s ease-in-out infinite;
}

.hero-gradient-2 {
    bottom: -30%;
    left: -10%;
    background: #4a90a4;
    animation: gradientPulse 8s ease-in-out infinite reverse;
}

@keyframes gradientPulse {

    0%,
    100% {
        opacity: 0.15;
        transform: scale(1);
    }

    50% {
        opacity: 0.25;
        transform: scale(1.1);
    }
}

.hero-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 6;
}

.hero-line {
    position: absolute;
    width: 1px;
    height: 0;
    background: linear-gradient(180deg, transparent, var(--border), transparent);
    animation: lineGrow 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes lineGrow {
    to {
        height: 100%;
    }
}

.hero-line:nth-child(1) {
    left: 20%;
    animation-delay: 2.4s;
}

.hero-line:nth-child(2) {
    left: 40%;
    animation-delay: 2.5s;
}

.hero-line:nth-child(3) {
    left: 60%;
    animation-delay: 2.6s;
}

.hero-line:nth-child(4) {
    left: 80%;
    animation-delay: 2.7s;
}

.hero-content {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 8rem 4rem;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(-30px);
    animation: eyebrowSlide 1s 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes eyebrowSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-eyebrow-line {
    width: 0;
    height: 1px;
    background: var(--accent);
    animation: lineExpand 0.8s 2.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes lineExpand {
    to {
        width: 40px;
    }
}

.hero-eyebrow-text {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 3s linear infinite;
}

@keyframes textShimmer {
    to {
        background-position: 200% center;
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 3rem;
}

.hero-title-line {
    display: block;
    overflow: hidden;
}

.hero-title-line span {
    display: inline-block;
    transform: translateY(110%) rotateX(-20deg);
    opacity: 0;
    animation: heroReveal 1.2s 2.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title-line:nth-child(2) span {
    animation-delay: 2.75s;
}

.hero-title-line:nth-child(3) span {
    animation-delay: 2.9s;
}

@keyframes heroReveal {
    to {
        transform: translateY(0) rotateX(0deg);
        opacity: 1;
    }
}

.hero-title em {
    font-style: italic;
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.hero-title em::after {
    content: '';
    position: absolute;
    bottom: -0.15em;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineReveal 1s 3.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes underlineReveal {
    to {
        transform: scaleX(1);
    }
}

.hero-description {
    max-width: 500px;
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideUp 1s 3.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideUp 1s 3.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.25rem 2.5rem;
    border-radius: 100px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    color: var(--bg-primary);
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--accent), var(--accent-light), var(--text-primary), var(--accent));
    background-size: 400% 400%;
    border-radius: 100px;
    z-index: -1;
    opacity: 0;
    animation: glowPulse 4s ease-in-out infinite;
    transition: opacity 0.3s;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 40%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 60%);
    transform: translateX(-100%);
    animation: shimmer 3s 4s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.btn-primary:hover::before {
    opacity: 1;
}

@keyframes glowPulse {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.btn-primary:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.9));
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2),
        0 0 40px rgba(201, 169, 98, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
}

.btn i {
    font-size: 0.65rem;
    transition: transform 0.3s;
}

.btn:hover i {
    transform: translateX(4px);
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeSlideUp 1s 3.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-scroll-text {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
    writing-mode: vertical-rl;
    animation: textBounce 2s 4.5s ease-in-out infinite;
}

@keyframes textBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--accent), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 1;
    }

    50% {
        transform: scaleY(0.5);
        opacity: 0.5;
    }
}

.hero-stats {
    position: absolute;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 3rem;
    opacity: 0;
    animation: fadeUp 1s 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-stat {
    text-align: right;
}

.hero-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--accent);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

@media (max-width: 1200px) {
    .hero-stats {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 8rem 1.5rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Section Styling */
section {
    position: relative;
}

.section-padding {
    padding: 10rem 4rem;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 5rem 1.5rem;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Section Header */
.section-header {
    margin-bottom: 5rem;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-number {
    font-family: 'Playfair Display', serif;
    font-size: 0.875rem;
    color: var(--accent);
}

.section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-title em {
    font-style: italic;
    color: var(--accent);
}

/* Stats Section */
.stats {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.stat-item {
    padding: 5rem 3rem;
    border-right: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-number .highlight {
    color: var(--accent);
}

.stat-label {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 3rem 2rem;
    }

    .stat-item:last-child {
        border-bottom: none;
    }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: start;
}

.about-content p {
    font-size: 1.125rem;
    line-height: 2;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 4rem;
}

.about-feature {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-feature:hover {
    border-color: var(--accent);
    transform: translateX(10px);
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--bg-primary);
    flex-shrink: 0;
}

.about-feature h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 24px;
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-wrapper:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateZ(20px);
    box-shadow:
        30px 30px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(201, 169, 98, 0.15);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 10, 0.8));
    z-index: 1;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-floating-card {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    z-index: 2;
}

.about-floating-card h5 {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.about-floating-card p {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-floating-card {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 2rem;
    }
}

/* Mission Section */
.mission {
    background: var(--bg-secondary);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
}

.mission-text p {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.mission-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.mission-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
}

.mission-card:hover::before {
    opacity: 0.03;
}

.mission-card-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    color: var(--accent);
    position: relative;
    z-index: 1;
}

.mission-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.mission-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .mission-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .mission-cards {
        grid-template-columns: 1fr;
    }
}

/* Team Section */
.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.team-intro p {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(201, 169, 98, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.team-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent);
}

.team-card:hover::before {
    opacity: 1;
}

.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.team-avatar::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    opacity: 0.3;
}

.team-avatar::after {
    content: '';
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    border: 1px dashed var(--border);
    animation: spin 20s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.team-avatar i {
    font-size: 3rem;
    color: var(--bg-primary);
}

.team-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.team-role {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.team-card p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Timeline Section */
.timeline {
    background: var(--bg-secondary);
    overflow: hidden;
}

.timeline-container {
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border);
    transform: translateX(-50%);
}

.timeline-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, var(--accent), var(--accent-light));
    animation: timelineFill 3s ease-out forwards;
}

@keyframes timelineFill {
    to {
        height: 100%;
    }
}

.timeline-items {
    position: relative;
    z-index: 1;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 6rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: calc(50% - 4rem);
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-content:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 0.875rem;
    color: var(--accent);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.timeline-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.timeline-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--accent);
    border-radius: 50%;
    border: 4px solid var(--bg-secondary);
}

@media (max-width: 1024px) {
    .timeline-line {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
        justify-content: flex-end;
    }

    .timeline-content {
        width: calc(100% - 60px);
    }

    .timeline-dot {
        left: 20px;
    }
}

/* Challenges Section */
.challenges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.challenge-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.challenge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #ffa07a);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.challenge-card:hover {
    transform: translateY(-10px);
    border-color: #ff6b6b;
}

.challenge-card:hover::before {
    transform: scaleX(1);
}

.challenge-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    color: rgba(255, 107, 107, 0.2);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.challenge-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.challenge-card p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-muted);
}

@media (max-width: 1200px) {
    .challenges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .challenges-grid {
        grid-template-columns: 1fr;
    }
}

/* Solutions Section */
.solutions {
    background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.solution-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.solution-card:hover {
    border-color: var(--accent);
    transform: translateX(10px);
}

.solution-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bg-primary);
    flex-shrink: 0;
}

.solution-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.solution-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}

/* Vision Section */
.vision {
    position: relative;
    overflow: hidden;
}

.vision-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 50%, rgba(201, 169, 98, 0.1), transparent),
        radial-gradient(ellipse 60% 40% at 80% 50%, rgba(74, 144, 164, 0.08), transparent);
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.vision-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.vision-text h2 em {
    font-style: italic;
    color: var(--accent);
}

.vision-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.vision-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.vision-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s;
}

.vision-tag i {
    color: var(--accent);
}

.vision-tag:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.vision-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.vision-icon-card {
    aspect-ratio: 1;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.vision-icon-card:hover {
    border-color: var(--accent);
    transform: scale(1.05) translateY(-5px);
}

.vision-icon-card i {
    font-size: 3rem;
    color: var(--accent);
}

.vision-icon-card span {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
    .vision-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .vision-icons {
        max-width: 400px;
    }
}

/* Quote Section */
.quote-section {
    background: var(--bg-secondary);
    text-align: center;
}

.quote-content {
    max-width: 900px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.3;
    margin-bottom: 2rem;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-primary);
}

/* Contact Section */
.contact {
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.contact-info h2 em {
    font-style: italic;
    color: var(--accent);
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.contact-detail-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.contact-detail-text strong {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-card:hover {
    border-color: var(--accent);
    transform: translateX(10px);
}

.contact-card-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-avatar i {
    font-size: 2rem;
    color: var(--bg-primary);
}

.contact-card-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact-card-role {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.contact-card-info a {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-card-info a:hover {
    color: var(--accent);
}

@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.2em;
}

.footer-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-credit {
    font-size: 0.75rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* Magnetic Button Effect */
.magnetic {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}