/* ============================================
           CSS RESET & BASE STYLES
           ============================================ */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Primary Colors - Luxurious Gold & Black */
            --color-primary: #c9a962;
            --color-primary-light: #e3d4a8;
            --color-primary-dark: #9a7b3c;
            
            /* Neutral Colors */
            --color-black: #0a0a0a;
            --color-dark: #1a1a1a;
            --color-gray-dark: #2d2d2d;
            --color-gray: #4a4a4a;
            --color-gray-light: #8a8a8a;
            --color-off-white: #f8f6f3;
            --color-white: #ffffff;
            
            /* Accent Colors */
            --color-accent: #d4a574;
            --color-accent-rose: #c9a4a4;
            
            /* Typography */
            --font-display: 'Cormorant Garamond', serif;
            --font-body: 'Montserrat', sans-serif;
            
            /* Spacing */
            --section-padding: 120px;
            --container-width: 1400px;
            
            /* Transitions */
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.7;
            color: var(--color-gray);
            background-color: var(--color-black);
            overflow-x: hidden;
        }

        /* Container */
        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 40px;
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-display);
            font-weight: 400;
            color: var(--color-white);
            line-height: 1.2;
        }

        p {
            color: var(--color-gray-light);
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition-fast);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Section Title Styles */
        .section-label {
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--color-primary);
            margin-bottom: 20px;
            display: inline-block;
        }

        .section-title {
            font-size: clamp(36px, 5vw, 64px);
            font-weight: 300;
            margin-bottom: 30px;
            position: relative;
        }

        .section-title span {
            color: var(--color-primary);
            font-style: italic;
        }

        .section-subtitle {
            font-size: 18px;
            max-width: 600px;
            line-height: 1.8;
        }

        /* Button Styles */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 40px;
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: var(--color-primary);
            color: var(--color-black);
        }

        .btn-primary:hover {
            background: var(--color-primary-light);
            transform: translateY(-2px);
            box-shadow: 0 20px 40px rgba(201, 169, 98, 0.3);
        }

        .btn-outline {
            background: transparent;
            color: var(--color-white);
            border: 1px solid var(--color-white);
        }

        .btn-outline:hover {
            background: var(--color-white);
            color: var(--color-black);
        }

        .btn-arrow {
            width: 24px;
            height: 24px;
            transition: transform var(--transition-fast);
        }

        .btn:hover .btn-arrow {
            transform: translateX(4px);
        }

        /* ============================================
           PAGE HERO - About
           ============================================ */
        .page-hero {
            position: relative;
            height: 60vh;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .page-hero-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)),
                url('https://images.unsplash.com/photo-1560066984-138dadb4c035?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
        }

        .page-hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .page-hero-label {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 6px;
            text-transform: uppercase;
            color: var(--color-primary);
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }

        .page-hero-label::before,
        .page-hero-label::after {
            content: '';
            width: 60px;
            height: 1px;
            background: var(--color-primary);
        }

        .page-hero h1 {
            font-size: clamp(48px, 8vw, 90px);
            font-weight: 300;
            color: var(--color-white);
            margin-bottom: 20px;
        }

        .page-hero h1 em {
            font-style: italic;
            color: var(--color-primary);
        }

        .page-hero-desc {
            font-size: 18px;
            color: var(--color-gray-light);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Breadcrumb */
        .breadcrumb {
            position: absolute;
            bottom: 40px;
            left: 0;
            right: 0;
            z-index: 3;
        }

        .breadcrumb-list {
            display: flex;
            align-items: center;
            gap: 15px;
            list-style: none;
            font-size: 13px;
            color: var(--color-gray-light);
        }

        .breadcrumb-list a {
            color: var(--color-white);
        }

        .breadcrumb-list a:hover {
            color: var(--color-primary);
        }

        .breadcrumb-list span {
            color: var(--color-primary);
        }

        /* ============================================
           OUR STORY SECTION
           ============================================ */
        .our-story {
            padding: var(--section-padding) 0;
            background: var(--color-black);
        }

        .story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
        }

        .story-images {
            position: relative;
            height: 650px;
        }

        .story-image {
            position: absolute;
            overflow: hidden;
        }

        .story-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }

        .story-image:hover img {
            transform: scale(1.05);
        }

        .story-image-1 {
            width: 380px;
            height: 500px;
            top: 0;
            left: 0;
            z-index: 2;
        }

        .story-image-2 {
            width: 320px;
            height: 420px;
            bottom: 0;
            right: 0;
            z-index: 1;
            border: 8px solid var(--color-black);
        }

        .story-badge {
            position: absolute;
            bottom: 120px;
            left: 300px;
            z-index: 3;
            width: 160px;
            height: 160px;
            background: var(--color-primary);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--color-black);
        }

        .story-badge-number {
            font-family: var(--font-display);
            font-size: 52px;
            font-weight: 600;
            line-height: 1;
        }

        .story-badge-text {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-top: 5px;
        }

        .story-content p {
            font-size: 16px;
            line-height: 1.9;
            margin-bottom: 25px;
        }

        .story-content p:first-of-type {
            font-size: 20px;
            color: var(--color-white);
            font-weight: 300;
        }

        .story-signature {
            margin-top: 40px;
            padding-top: 40px;
            border-top: 1px solid var(--color-gray-dark);
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .signature-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--color-primary);
        }

        .signature-name {
            font-family: var(--font-display);
            font-size: 22px;
            color: var(--color-white);
            margin-bottom: 5px;
        }

        .signature-title {
            font-size: 13px;
            color: var(--color-primary);
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* ============================================
           MISSION & VISION SECTION
           ============================================ */
        .mission-vision {
            padding: var(--section-padding) 0;
            background: var(--color-dark);
        }

        .mv-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 60px;
        }

        .mv-card {
            padding: 60px;
            background: var(--color-black);
            border: 1px solid var(--color-gray-dark);
            position: relative;
            transition: var(--transition-smooth);
        }

        .mv-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--color-primary);
            transform: scaleX(0);
            transition: var(--transition-smooth);
        }

        .mv-card:hover {
            border-color: var(--color-primary);
        }

        .mv-card:hover::before {
            transform: scaleX(1);
        }

        .mv-icon {
            width: 80px;
            height: 80px;
            border: 1px solid var(--color-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-primary);
            margin-bottom: 35px;
            transition: var(--transition-smooth);
        }

        .mv-card:hover .mv-icon {
            background: var(--color-primary);
            color: var(--color-black);
        }

        .mv-icon svg {
            width: 36px;
            height: 36px;
        }

        .mv-title {
            font-size: 32px;
            margin-bottom: 20px;
        }

        .mv-text {
            font-size: 16px;
            line-height: 1.9;
        }

        /* ============================================
           TEAM SECTION
           ============================================ */
        .team {
            padding: var(--section-padding) 0;
            background: var(--color-black);
        }

        .team-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 80px;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .team-card {
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .team-image-wrapper {
            position: relative;
            height: 400px;
            overflow: hidden;
        }

        .team-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }

        .team-card:hover .team-image {
            transform: scale(1.1);
        }

        .team-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, transparent 60%);
            transition: var(--transition-smooth);
        }

        .team-card:hover .team-overlay {
            background: linear-gradient(to top, rgba(10,10,10,0.98) 0%, rgba(201,169,98,0.2) 100%);
        }

        .team-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px;
            z-index: 2;
        }

        .team-name {
            font-size: 24px;
            color: var(--color-white);
            margin-bottom: 8px;
            transition: color var(--transition-fast);
        }

        .team-card:hover .team-name {
            color: var(--color-primary);
        }

        .team-role {
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--color-primary);
            margin-bottom: 20px;
        }

        .team-social {
            display: flex;
            gap: 15px;
            opacity: 0;
            transform: translateY(20px);
            transition: var(--transition-smooth);
        }

        .team-card:hover .team-social {
            opacity: 1;
            transform: translateY(0);
        }

        .team-social a {
            width: 40px;
            height: 40px;
            border: 1px solid var(--color-gray-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-white);
            transition: var(--transition-fast);
        }

        .team-social a:hover {
            background: var(--color-primary);
            border-color: var(--color-primary);
            color: var(--color-black);
        }

        .team-social svg {
            width: 18px;
            height: 18px;
        }

        /* ============================================
           MILESTONES / TIMELINE SECTION
           ============================================ */
        .milestones {
            padding: var(--section-padding) 0;
            background: var(--color-dark);
        }

        .milestones-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 80px;
        }

        .timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: var(--color-gray-dark);
        }

        .timeline-item {
            display: flex;
            justify-content: flex-end;
            padding-right: 60px;
            position: relative;
            margin-bottom: 60px;
            width: 50%;
        }

        .timeline-item:nth-child(even) {
            justify-content: flex-start;
            padding-left: 60px;
            padding-right: 0;
            margin-left: 50%;
        }

        .timeline-dot {
            position: absolute;
            right: -12px;
            top: 0;
            width: 24px;
            height: 24px;
            border: 3px solid var(--color-primary);
            background: var(--color-dark);
            z-index: 2;
        }

        .timeline-item:nth-child(even) .timeline-dot {
            right: auto;
            left: -12px;
        }

        .timeline-content {
            background: var(--color-black);
            border: 1px solid var(--color-gray-dark);
            padding: 35px;
            max-width: 400px;
            transition: var(--transition-smooth);
        }

        .timeline-content:hover {
            border-color: var(--color-primary);
        }

        .timeline-year {
            font-family: var(--font-display);
            font-size: 48px;
            color: var(--color-primary);
            font-weight: 300;
            margin-bottom: 15px;
        }

        .timeline-title {
            font-size: 22px;
            color: var(--color-white);
            margin-bottom: 15px;
        }

        .timeline-text {
            font-size: 15px;
            line-height: 1.8;
        }

        /* ============================================
           STATS SECTION
           ============================================ */
        .stats {
            padding: 80px 0;
            background: var(--color-primary);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            text-align: center;
        }

        .stat-item {
            color: var(--color-black);
        }

        .stat-number {
            font-family: var(--font-display);
            font-size: 64px;
            font-weight: 600;
            line-height: 1;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        /* ============================================
           CTA SECTION
           ============================================ */
        .cta {
            padding: var(--section-padding) 0;
            background: var(--color-black);
            text-align: center;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: clamp(36px, 5vw, 56px);
            margin-bottom: 25px;
        }

        .cta-text {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 40px;
        }

        /* ============================================
           RESPONSIVE STYLES
           ============================================ */
        @media (max-width: 1200px) {
            .container {
                padding: 0 30px;
            }

            .story-grid {
                gap: 60px;
            }

            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 50px;
            }
        }

        @media (max-width: 992px) {
            :root {
                --section-padding: 80px;
            }

            .story-grid {
                grid-template-columns: 1fr;
            }

            .story-images {
                height: 550px;
                margin-bottom: 40px;
            }

            .mv-grid {
                grid-template-columns: 1fr;
            }

            .timeline::before {
                left: 20px;
            }

            .timeline-item,
            .timeline-item:nth-child(even) {
                width: 100%;
                margin-left: 0;
                padding-left: 70px;
                padding-right: 0;
                justify-content: flex-start;
            }

            .timeline-dot,
            .timeline-item:nth-child(even) .timeline-dot {
                left: 8px;
                right: auto;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }

            .page-hero {
                height: 50vh;
                min-height: 400px;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }

            .story-image-1 {
                width: 70%;
            }

            .story-image-2 {
                width: 60%;
            }

            .story-badge {
                left: 50%;
                bottom: 20px;
                width: 130px;
                height: 130px;
            }

            .story-badge-number {
                font-size: 40px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .mv-card {
                padding: 40px;
            }
        }

        @media (max-width: 480px) {
            :root {
                --section-padding: 60px;
            }

            .page-hero h1 {
                font-size: 36px;
            }

            .timeline-content {
                padding: 25px;
            }

            .timeline-year {
                font-size: 36px;
            }
        }