﻿:root {
            --accent: #DC143C; /* Nepal Red */
            --dark: #0a0a0a;
            --dark-light: #111112;
            --gray-800: #1a1a1a;
            --gray-700: #222222;
            --gray-600: #333333;
            --gray-500: #555555;
            --gray-400: #888888;
            --gray-300: #aaaaaa;
            --white: #ffffff;
        }
       
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
       
        html {
            scroll-behavior: smooth;
        }
       
        body {
            background: var(--dark);
            color: var(--white);
            font-family: 'Sora', sans-serif;
            font-size: 16px;
            line-height: 1.6;
            overflow-x: hidden;
        }
       
        ::selection {
            background: var(--accent);
            color: var(--dark);
        }
       
        ::-webkit-scrollbar {
            width: 6px;
        }
       
        ::-webkit-scrollbar-track {
            background: var(--dark);
        }
       
        ::-webkit-scrollbar-thumb {
            background: var(--gray-600);
            border-radius: 3px;
        }
       
        img {
            display: block;
            max-width: 100%;
        }
       
        a {
            color: inherit;
            text-decoration: none;
        }
       
        /* ==================== LOADER ==================== */
        .loader {
            position: fixed;
            inset: 0;
            background: var(--dark);
            z-index: 10000;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 24px;
            transition: opacity 0.6s, visibility 0.6s;
        }
       
        .loader.hide {
            opacity: 0;
            visibility: hidden;
        }
       
        .loader-name {
            font-family: 'Instrument Serif', serif;
            font-size: 3.5rem;
            color: var(--accent);
        }
       
        .loader-bar {
            width: 180px;
            height: 2px;
            background: var(--gray-700);
            border-radius: 2px;
            overflow: hidden;
        }
       
        .loader-progress {
            height: 100%;
            width: 0;
            background: var(--accent);
            animation: loadProgress 1.8s ease forwards;
        }
       
        @keyframes loadProgress {
            to { width: 100%; }
        }
       
        /* ==================== HEADER ==================== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 24px 48px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.5s cubic-bezier(0.65, 0.05, 0, 1);
        }

        .header.scrolled {
            padding: 16px 48px;
            background: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }

        .header.scrolled .header-logo {
            transform: scale(0.9);
        }

        .header-logo {
            font-family: 'Instrument Serif', serif;
            font-size: 1.8rem;
            font-style: italic;
            color: var(--white);
            z-index: 101;
            transition: all 0.5s cubic-bezier(0.65, 0.05, 0, 1);
            position: relative;
            letter-spacing: -0.02em;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .header-logo::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            transition: all 0.4s cubic-bezier(0.65, 0.05, 0, 1);
        }

        .header-logo:hover {
            color: var(--accent);
        }

        .header-logo:hover::before {
            transform: scale(1.5);
            box-shadow: 0 0 20px var(--accent);
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 32px;
            z-index: 101;
            mix-blend-mode: difference;
        }

        .header-store {
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--white);
            padding: 10px 20px;
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 100px;
            transition: all 0.4s cubic-bezier(0.65, 0.05, 0, 1);
            position: relative;
            overflow: hidden;
        }

        .header-store::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--accent);
            transform: translateY(101%);
            transition: transform 0.4s cubic-bezier(0.65, 0.05, 0, 1);
            z-index: -1;
        }

        .header-store:hover {
            color: var(--dark);
            border-color: var(--accent);
        }

        .header-store:hover::before {
            transform: translateY(0);
        }

        .menu-toggle {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            background: none;
            border: none;
            color: var(--white);
            font-family: 'Sora', sans-serif;
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            transition: color 0.3s;
        }

        .menu-toggle:hover {
            color: var(--accent);
        }

        .menu-toggle:hover .menu-toggle-icon span {
            background: var(--accent);
        }

        .menu-toggle-icon {
            width: 24px;
            height: 14px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .menu-toggle-icon span {
            display: block;
            width: 100%;
            height: 2px;
            background: var(--white);
            transition: all 0.4s cubic-bezier(0.65, 0.05, 0, 1);
            transform-origin: center;
        }

        .menu-toggle.active .menu-toggle-icon span:first-child {
            transform: translateY(6px) rotate(45deg);
        }

        .menu-toggle.active .menu-toggle-icon span:last-child {
            transform: translateY(-6px) rotate(-45deg);
        }

        .menu-toggle.active .menu-toggle-text {
            opacity: 0;
        }

        .menu-toggle-text {
            transition: opacity 0.3s;
        }
       
        /* ==================== FULLSCREEN MENU ==================== */
        .fullscreen-menu {
            position: fixed;
            inset: 0;
            background: var(--dark);
            z-index: 99;
            display: flex;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
       
        .fullscreen-menu.active {
            opacity: 1;
            visibility: visible;
        }
       
        .menu-images {
            width: 55%;
            display: flex;
            gap: 16px;
            padding: 100px 40px 40px;
            overflow: hidden;
        }
       
        .menu-image {
            flex: 1;
            border-radius: 12px;
            overflow: hidden;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.5s ease;
        }
       
        .fullscreen-menu.active .menu-image {
            opacity: 1;
            transform: translateY(0);
        }
       
        .fullscreen-menu.active .menu-image:nth-child(1) { transition-delay: 0.1s; }
        .fullscreen-menu.active .menu-image:nth-child(2) { transition-delay: 0.2s; }
        .fullscreen-menu.active .menu-image:nth-child(3) { transition-delay: 0.3s; }
       
        .menu-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(60%);
            transition: filter 0.4s;
        }
       
        .menu-image:hover img {
            filter: grayscale(0%);
        }
       
        .menu-content {
            width: 45%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 120px 60px 60px;
        }
       
        .menu-nav {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
       
        .menu-nav a {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(2rem, 4vw, 3.5rem);
            color: var(--white);
            opacity: 0;
            transform: translateX(30px);
            transition: all 0.5s cubic-bezier(0.65, 0.05, 0, 1);
            position: relative;
            display: inline-block;
            overflow: hidden;
        }

        .menu-nav a .nav-text {
            display: inline-block;
            transition: transform 0.5s cubic-bezier(0.65, 0.05, 0, 1);
        }

        .menu-nav a .nav-text-hover {
            position: absolute;
            top: 0;
            left: 0;
            color: var(--accent);
            transform: translateY(100%);
            transition: transform 0.5s cubic-bezier(0.65, 0.05, 0, 1);
        }

        .menu-nav a:hover .nav-text {
            transform: translateY(-100%);
        }

        .menu-nav a:hover .nav-text-hover {
            transform: translateY(0);
        }

        .menu-nav a::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent);
            transition: width 0.5s cubic-bezier(0.65, 0.05, 0, 1);
        }

        .menu-nav a:hover::after {
            width: 100%;
        }

        .fullscreen-menu.active .menu-nav a {
            opacity: 1;
            transform: translateX(0);
        }

        .fullscreen-menu.active .menu-nav a:nth-child(1) { transition-delay: 0.15s; }
        .fullscreen-menu.active .menu-nav a:nth-child(2) { transition-delay: 0.2s; }
        .fullscreen-menu.active .menu-nav a:nth-child(3) { transition-delay: 0.25s; }
        .fullscreen-menu.active .menu-nav a:nth-child(4) { transition-delay: 0.3s; }
        .fullscreen-menu.active .menu-nav a:nth-child(5) { transition-delay: 0.35s; }

        .menu-nav a:hover {
            color: var(--accent);
        }
       
        .menu-tag {
            font-size: 0.6rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gray-500);
            margin-top: 40px;
        }
       
        .menu-bottom {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }
       
        .menu-contact {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease 0.4s;
        }
       
        .fullscreen-menu.active .menu-contact {
            opacity: 1;
            transform: translateY(0);
        }
       
        .menu-contact-label {
            font-size: 0.6rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gray-500);
            margin-bottom: 8px;
        }
       
        .menu-contact a {
            font-size: 0.9rem;
            color: var(--white);
            transition: color 0.3s;
        }
       
        .menu-contact a:hover {
            color: var(--accent);
        }
       
        .menu-social {
            display: flex;
            gap: 24px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease 0.5s;
        }
       
        .fullscreen-menu.active .menu-social {
            opacity: 1;
            transform: translateY(0);
        }
       
        .menu-social a {
            font-size: 0.75rem;
            color: var(--gray-400);
            transition: color 0.3s;
        }
       
        .menu-social a:hover {
            color: var(--accent);
        }
       
        /* ==================== HERO ==================== */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 700px;
            display: flex;
            align-items: flex-end;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 1;
            background: radial-gradient(ellipse at center, var(--gray-800) 0%, var(--dark) 70%);
        }

        .hero-images {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            will-change: transform;
            cursor: crosshair;
        }

        .hero-img {
            position: absolute;
            top: 40%;
            left: 60%;
            transform: translate(-50%, -50%) scale(1.3);
            transform-origin: center center;
            max-width: 100%;
            max-height: 100%;
            mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
            -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
            width: auto;
            height: auto;
            object-fit: contain;
            opacity: 0.6;
            filter: brightness(0.85) contrast(1.25) saturate(1.15);
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }

        @media (max-width: 768px) {
            .hero-img {
                top: 0;
                left: 0;
                transform: none;
                max-width: 100%;
                max-height: 100%;
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center 20%;
            }
        }

        .hero-img-alt {
            opacity: 0;
            clip-path: ellipse(0px 0px at 50% 50%);
            pointer-events: none;
            transition: opacity 0.3s ease;
            filter: contrast(1.15) saturate(1.1);
        }

        .hero-img-alt.active {
            opacity: 1;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to bottom,
                transparent 0%,
                transparent 60%,
                rgba(10, 10, 10, 0.4) 80%,
                rgba(10, 10, 10, 1) 100%
            );
            z-index: 2;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            width: 100%;
            padding: 0 48px 100px;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            pointer-events: none;
        }

        .hero-content a,
        .hero-content button {
            pointer-events: auto;
        }

        .hero-left {
            width: 35%;
            max-width: 500px;
        }

        .hero-right {
            width: 30%;
            max-width: 400px;
            text-align: right;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 10px 20px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 100px;
            font-size: 0.7rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--gray-300);
            margin-bottom: 24px;
            opacity: 0;
            transform: translateY(20px);
            animation: heroReveal 0.8s cubic-bezier(0.65, 0.05, 0, 1) 0.5s forwards;
        }

        .hero-badge-dot {
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .nepal-flag {
            width: 12px;
            height: auto;
            object-fit: contain;
            position: relative;
            top: -2px;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.8); }
        }

        @keyframes heroReveal {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-title {
            font-family: 'Instrument Serif', serif;
            font-weight: 400;
            line-height: 0.9;
            letter-spacing: -0.02em;
        }

        .hero-title em {
            font-style: italic;
            color: var(--gray-400);
        }

        .hero-title em.accent {
            color: var(--accent);
        }

        .hero-title-line {
            display: block;
            font-size: clamp(4rem, 11vw, 9rem);
            overflow: visible;
            padding-right: 0.1em;
        }

        .hero-title-line .split-text {
            display: inline-block;
            opacity: 0;
            transform: translateY(100%);
            animation: splitReveal 1s cubic-bezier(0.65, 0.05, 0, 1) forwards;
        }

        .hero-title-line:nth-child(1) .split-text {
            animation-delay: 0.6s;
        }

        .hero-title-line:nth-child(2) .split-text {
            animation-delay: 0.75s;
        }

        @keyframes splitReveal {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-title-line.accent {
            color: var(--accent);
        }

        .hero-subtitle {
            font-family: 'Instrument Serif', serif;
            font-size: 1.4rem;
            font-style: italic;
            color: var(--gray-400);
            margin-top: 20px;
            opacity: 0;
            transform: translateY(20px);
            animation: heroReveal 0.8s cubic-bezier(0.65, 0.05, 0, 1) 0.9s forwards;
        }

        .hero-stat {
            margin-bottom: 24px;
            opacity: 0;
            transform: translateX(30px);
            animation: heroStatReveal 0.7s cubic-bezier(0.65, 0.05, 0, 1) forwards;
        }

        .hero-stat:nth-child(1) { animation-delay: 1s; }
        .hero-stat:nth-child(2) { animation-delay: 1.1s; }
        .hero-stat:nth-child(3) { animation-delay: 1.2s; }
        .hero-stat:nth-child(4) { animation-delay: 1.3s; }

        @keyframes heroStatReveal {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-stat:last-child {
            margin-bottom: 0;
        }

        .hero-stat-label {
            font-size: 0.55rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gray-500);
            margin-bottom: 4px;
        }

        .hero-stat-value {
            font-family: 'Instrument Serif', serif;
            font-size: 1.4rem;
            transition: color 0.3s;
        }

        .hero-stat:hover .hero-stat-value {
            color: var(--accent);
        }

        .hero-stat-value.accent {
            color: var(--accent);
        }

        .hero-scroll {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            opacity: 0;
            animation: heroReveal 0.8s cubic-bezier(0.65, 0.05, 0, 1) 1.5s forwards;
            pointer-events: none;
        }

        .hero-scroll-text {
            font-size: 0.55rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gray-500);
        }

        .hero-scroll-line {
            width: 1px;
            height: 50px;
            background: linear-gradient(to bottom, var(--accent), transparent);
            animation: scrollLine 1.5s ease-in-out infinite;
        }

        @keyframes scrollLine {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }
       
        /* Side Labels */
        .side-label {
            position: fixed;
            z-index: 50;
            font-size: 0.5rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--white);
            writing-mode: vertical-rl;
        }
       
        .side-label.left {
            left: 16px;
            top: 50%;
            transform: translateY(-50%) rotate(180deg);
        }
       
        .side-label.right {
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
        }
       
        /* ==================== MESSAGE SECTION ==================== */
        .message {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 120px 48px;
            background: var(--dark);
        }
       
        .message-inner {
            max-width: 1000px;
            text-align: center;
        }
       
        .message-label {
            font-size: 0.6rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--white);
            margin-bottom: 40px;
        }
       
        .message-text {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 400;
            line-height: 1.35;
        }
       
        .message-text strong {
            color: var(--accent);
            font-weight: 400;
        }
       
        .message-signature {
            margin-top: 50px;
        }
       
        .message-signature svg {
            width: 160px;
            height: 50px;
        }
       
        /* ==================== ABOUT SECTION ==================== */
        .about {
            padding: 140px 48px;
            background: var(--dark-light);
            border-top: 1px solid var(--gray-700);
        }
       
        .about-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            align-items: start;
        }
       
        .about-image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
        }
       
        .about-image {
            width: 100%;
            aspect-ratio: 3/4;
            object-fit: cover;
            filter: grayscale(40%);
            transition: filter 0.5s;
        }
       
        .about-image-wrapper:hover .about-image {
            filter: grayscale(0%);
        }
       
        .about-image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 32px;
            background: linear-gradient(to top, rgba(10,10,10,0.9), transparent);
        }
       
        .about-image-name {
            font-family: 'Instrument Serif', serif;
            font-size: 2rem;
        }
       
        .about-image-title {
            font-size: 0.8rem;
            color: var(--accent);
            margin-top: 4px;
        }
       
        .about-quick-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
            margin-top: 24px;
        }
       
        .about-quick-stat {
            background: var(--gray-800);
            border: 1px solid var(--gray-700);
            border-radius: 12px;
            padding: 16px 12px;
            text-align: center;
        }
       
        .about-quick-stat-value {
            font-family: 'Instrument Serif', serif;
            font-size: 1.5rem;
            color: var(--accent);
        }
       
        .about-quick-stat-label {
            font-size: 0.6rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--gray-400);
            margin-top: 4px;
        }
       
        .about-right {
            padding-top: 20px;
        }
       
        .about-label {
            font-size: 0.6rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--gray-500);
            margin-bottom: 20px;
        }
       
        .about-title {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            line-height: 1.1;
            margin-bottom: 40px;
        }
       
        .about-title span {
            color: var(--accent);
        }
       
        .about-text {
            font-size: 1rem;
            color: var(--gray-300);
            line-height: 1.9;
            margin-bottom: 24px;
        }
       
        .about-details {
            margin-top: 40px;
            padding-top: 32px;
            border-top: 1px solid var(--gray-700);
        }
       
        .about-details-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
       
        .about-detail {
            display: flex;
            justify-content: space-between;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--gray-700);
        }
       
        .about-detail-label {
            font-size: 0.8rem;
            color: var(--gray-500);
        }
       
        .about-detail-value {
            font-size: 0.85rem;
            font-weight: 500;
            text-align: right;
        }
       
        .about-detail-value.accent {
            color: var(--accent);
        }
       
        /* ==================== TIMELINE ==================== */
        .timeline-section {
            padding: 140px 48px;
            background: var(--dark);
            border-top: 1px solid var(--gray-700);
            overflow: hidden;
        }

        .timeline-header {
            max-width: 800px;
            margin: 0 auto 100px;
            text-align: center;
        }

        .timeline-header-label {
            font-size: 0.65rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 20px;
        }

        .timeline-title {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .timeline-title span {
            color: var(--accent);
        }

        .timeline-desc {
            max-width: 500px;
            margin: 0 auto;
            font-size: 1rem;
            color: var(--gray-400);
            line-height: 1.7;
        }

        .timeline-snake {
            position: relative;
            max-width: 1100px;
            margin: 0 auto;
        }

        .timeline-line-vertical {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, transparent, var(--gray-700) 5%, var(--gray-700) 95%, transparent);
            transform: translateX(-50%);
        }

        .timeline-item {
            display: flex;
            align-items: center;
            width: 100%;
            margin-bottom: 60px;
            position: relative;
        }

        .timeline-item:last-child {
            margin-bottom: 0;
        }

        .timeline-item.left {
            justify-content: flex-start;
        }

        .timeline-item.right {
            justify-content: flex-end;
        }

        .timeline-item-content {
            width: calc(50% - 60px);
            background: var(--dark-light);
            border: 1px solid var(--gray-700);
            border-radius: 20px;
            padding: 32px;
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .timeline-item:hover .timeline-item-content {
            border-color: var(--accent);
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .timeline-item.left .timeline-item-content {
            text-align: right;
        }

        .timeline-item.right .timeline-item-content {
            text-align: left;
        }

        .timeline-item-content::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 40px;
            height: 2px;
            background: var(--gray-700);
            transition: background 0.3s;
        }

        .timeline-item:hover .timeline-item-content::after {
            background: var(--accent);
        }

        .timeline-item.left .timeline-item-content::after {
            right: -40px;
        }

        .timeline-item.right .timeline-item-content::after {
            left: -40px;
        }

        .timeline-item-dot {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            background: var(--dark);
            border: 3px solid var(--gray-600);
            border-radius: 50%;
            z-index: 2;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .timeline-item:hover .timeline-item-dot {
            background: var(--accent);
            border-color: var(--accent);
            box-shadow: 0 0 30px rgba(220, 20, 60, 0.6);
            transform: translateX(-50%) scale(1.2);
        }

        .timeline-item.highlight .timeline-item-dot {
            background: var(--accent);
            border-color: var(--accent);
            box-shadow: 0 0 20px rgba(220, 20, 60, 0.4);
        }

        .timeline-item.highlight .timeline-item-content {
            background: linear-gradient(135deg, var(--dark-light) 0%, rgba(220, 20, 60, 0.05) 100%);
            border-color: rgba(220, 20, 60, 0.25);
        }

        .timeline-item-icon {
            width: 48px;
            height: 48px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--gray-800);
            border-radius: 12px;
            margin-bottom: 16px;
            color: var(--gray-400);
            transition: all 0.3s;
        }

        .timeline-item.left .timeline-item-icon {
            margin-left: auto;
        }

        .timeline-item:hover .timeline-item-icon {
            background: var(--accent);
            color: var(--dark);
        }

        .timeline-item-icon svg {
            width: 22px;
            height: 22px;
        }

        .timeline-item-badge {
            display: inline-block;
            padding: 6px 14px;
            background: rgba(220, 20, 60, 0.15);
            border: 1px solid rgba(220, 20, 60, 0.3);
            border-radius: 100px;
            font-size: 0.6rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 12px;
        }

        .timeline-item-year {
            font-family: 'Instrument Serif', serif;
            font-size: 2.5rem;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 8px;
        }

        .timeline-item-title {
            font-family: 'Instrument Serif', serif;
            font-size: 1.4rem;
            margin-bottom: 6px;
            line-height: 1.2;
        }

        .timeline-item-location {
            font-size: 0.7rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--gray-500);
            margin-bottom: 14px;
        }

        .timeline-item-text {
            font-size: 0.9rem;
            color: var(--gray-400);
            line-height: 1.7;
        }

        .timeline-item-stat {
            display: inline-flex;
            align-items: baseline;
            gap: 8px;
            margin-top: 18px;
            padding-top: 18px;
            border-top: 1px solid var(--gray-700);
        }

        .timeline-item.left .timeline-item-stat {
            float: right;
        }

        .timeline-item-stat .stat-value {
            font-family: 'Instrument Serif', serif;
            font-size: 2rem;
            color: var(--accent);
            line-height: 1;
        }

        .timeline-item-stat .stat-label {
            font-size: 0.7rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--gray-500);
        }
       
        /* ==================== SIMPLE HORIZONTAL GALLERY ==================== */
        .gallery {
            padding: 120px 0;
            background: var(--dark-light);
            border-top: 1px solid var(--gray-700);
        }
       
        .gallery-header {
            padding: 0 48px;
            margin-bottom: 50px;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }
       
        .gallery-title {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(2.5rem, 5vw, 3.5rem);
        }
       
        .gallery-title span {
            color: var(--accent);
        }
       
        .gallery-desc {
            max-width: 380px;
            font-size: 0.9rem;
            color: var(--gray-400);
            text-align: right;
            line-height: 1.6;
        }
       
        .gallery-scroll {
            overflow-x: auto;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            cursor: grab;
        }
       
        .gallery-scroll::-webkit-scrollbar {
            display: none;
        }
       
        .gallery-scroll:active {
            cursor: grabbing;
        }
       
        .gallery-track {
            display: flex;
            gap: 24px;
            padding: 0 48px 20px;
            width: max-content;
        }
       
        .gallery-item {
            flex-shrink: 0;
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
        }
       
        .gallery-item.large {
            width: 500px;
            height: 400px;
        }
       
        .gallery-item.medium {
            width: 380px;
            height: 400px;
        }
       
        .gallery-item.small {
            width: 300px;
            height: 400px;
        }
       
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%);
            transition: filter 0.5s, transform 0.5s;
        }
       
        .gallery-item:hover img {
            filter: grayscale(0%);
            transform: scale(1.05);
        }
       
        .gallery-item-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 28px;
            background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
        }
       
        .gallery-item-location {
            font-size: 0.55rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--gray-400);
            margin-bottom: 5px;
        }
       
        .gallery-item-title {
            font-family: 'Instrument Serif', serif;
            font-size: 1.1rem;
        }
       
        .gallery-hint {
            text-align: center;
            padding-top: 24px;
            font-size: 0.6rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--gray-500);
        }
       
        /* ==================== ON FIELD / OFF FIELD SECTIONS ==================== */
        .on-field,
        .off-field {
            border-top: 1px solid var(--gray-700);
        }
       
        .on-field {
            background: var(--dark-light);
        }
       
        .off-field {
            background: var(--dark);
        }
       
        .field-header {
            position: relative;
            padding: 120px 48px 80px;
            text-align: center;
            overflow: hidden;
        }
       
        .field-header-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: 'Instrument Serif', serif;
            font-size: clamp(6rem, 15vw, 14rem);
            color: var(--gray-800);
            white-space: nowrap;
            pointer-events: none;
            opacity: 0.4;
            letter-spacing: -0.02em;
        }
       
        .field-header-content {
            position: relative;
            z-index: 2;
        }
       
        .field-label {
            display: inline-block;
            font-size: 0.6rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 16px;
        }
       
        .field-title {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 16px;
        }
       
        .field-title span {
            color: var(--accent);
        }
       
        .field-subtitle {
            font-size: 1rem;
            color: var(--gray-400);
            max-width: 500px;
            margin: 0 auto;
        }
       
        /* Records Section */
        .records-section {
            padding: 100px 48px;
            border-top: 1px solid var(--gray-700);
            overflow: hidden;
        }

        .records-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .records-eyebrow {
            display: inline-block;
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 16px;
            padding: 8px 16px;
            border: 1px solid rgba(220, 20, 60, 0.3);
            border-radius: 100px;
        }

        .records-title {
            font-family: 'Instrument Serif', serif;
            font-size: 3rem;
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }

        .records-title em {
            font-style: italic;
            color: var(--accent);
        }

        .records-desc {
            color: var(--gray-500);
            font-size: 1rem;
        }

        /* Bento Grid Layout */
        .records-bento {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Featured card spans 2 rows */
        .record-card.record-featured {
            grid-row: span 2;
            display: flex;
            flex-direction: column;
        }

        .record-card.record-featured .record-content {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .record-card.record-featured .record-comparison {
            margin-top: auto;
            padding-top: 20px;
        }

        .record-card {
            position: relative;
            background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.95));
            border: 1px solid var(--gray-800);
            border-radius: 24px;
            padding: 32px;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }

        .record-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            padding: 1px;
            background: linear-gradient(145deg, rgba(255,255,255,0.1), transparent 50%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }

        .record-card:hover {
            border-color: rgba(220, 20, 60, 0.5);
            transform: translateY(-4px);
        }

        .record-card:hover .record-glow {
            opacity: 1;
        }

        .record-glow {
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at center, rgba(220, 20, 60, 0.15), transparent 50%);
            opacity: 0;
            transition: opacity 0.5s;
            pointer-events: none;
        }

        .record-content {
            position: relative;
            z-index: 1;
        }

        .record-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
        }

        .record-icon-wrap {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(220, 20, 60, 0.1);
            border: 1px solid rgba(220, 20, 60, 0.2);
            border-radius: 14px;
            color: var(--accent);
        }

        .record-icon-wrap svg {
            width: 22px;
            height: 22px;
        }

        .record-badge {
            font-size: 0.65rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--accent);
            padding: 6px 12px;
            background: rgba(220, 20, 60, 0.1);
            border: 1px solid rgba(220, 20, 60, 0.2);
            border-radius: 100px;
        }

        .record-stat-wrap {
            display: flex;
            align-items: baseline;
            gap: 4px;
            margin-bottom: 8px;
        }

        .record-stat {
            font-family: 'Instrument Serif', serif;
            font-size: 4.5rem;
            background: linear-gradient(135deg, var(--white) 0%, var(--gray-400) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            letter-spacing: -0.03em;
        }

        .record-featured .record-stat {
            font-size: 6rem;
        }

        .record-plus {
            font-family: 'Instrument Serif', serif;
            font-size: 3rem;
            color: var(--accent);
            line-height: 1;
        }

        .record-featured .record-plus {
            font-size: 4rem;
        }

        .record-stat-text {
            font-family: 'Instrument Serif', serif;
            font-size: 4rem;
            background: linear-gradient(135deg, var(--accent) 0%, #ff6b6b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }

        .record-stat-text sup {
            font-size: 1.5rem;
            vertical-align: super;
        }

        .record-label {
            font-size: 0.75rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--gray-400);
            margin-bottom: 12px;
        }

        .record-text {
            font-size: 0.9rem;
            color: var(--gray-500);
            line-height: 1.7;
        }

        /* Progress Bar */
        .record-bar {
            margin-top: 24px;
            position: relative;
        }

        .record-bar-fill {
            height: 4px;
            background: linear-gradient(90deg, var(--accent), #ff6b6b);
            border-radius: 4px;
            width: var(--fill-width, 0%);
            position: relative;
        }

        .record-bar-fill::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 12px;
            height: 12px;
            background: var(--accent);
            border-radius: 50%;
            box-shadow: 0 0 20px var(--accent);
        }

        .record-bar-label {
            display: block;
            margin-top: 12px;
            font-size: 0.7rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--gray-500);
        }

        /* League Logo */
        .record-league {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 20px;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--gray-800);
            border-radius: 12px;
        }

        .record-league svg {
            width: 16px;
            height: 16px;
            color: var(--accent);
        }

        .record-league span {
            font-size: 0.8rem;
            color: var(--gray-400);
            letter-spacing: 0.05em;
        }

        /* Ratio Display */
        .record-ratio {
            margin-top: 20px;
            display: flex;
            gap: 16px;
        }

        .record-ratio-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 16px 24px;
            background: rgba(220, 20, 60, 0.05);
            border: 1px solid rgba(220, 20, 60, 0.15);
            border-radius: 12px;
            flex: 1;
        }

        .record-ratio-num {
            font-family: 'Instrument Serif', serif;
            font-size: 2rem;
            color: var(--white);
            line-height: 1;
        }

        .record-ratio-label {
            font-size: 0.65rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--gray-500);
            margin-top: 4px;
        }

        /* Highlight Tag */
        .record-highlight-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 16px;
            padding: 10px 16px;
            background: linear-gradient(135deg, rgba(220, 20, 60, 0.15), rgba(220, 20, 60, 0.05));
            border: 1px solid rgba(220, 20, 60, 0.2);
            border-radius: 100px;
            color: var(--accent);
            font-size: 0.75rem;
            letter-spacing: 0.05em;
        }

        .record-highlight-tag svg {
            width: 14px;
            height: 14px;
        }

        /* Highlight card special style */
        .record-card.record-highlight {
            background: linear-gradient(145deg, rgba(220, 20, 60, 0.08), rgba(10, 10, 10, 0.95));
        }

        .record-card.record-highlight::before {
            background: linear-gradient(145deg, rgba(220, 20, 60, 0.3), transparent 50%);
        }

        /* Goal Breakdown */
        .record-breakdown {
            margin-top: 24px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--gray-800);
            border-radius: 16px;
        }

        .record-breakdown-title {
            font-size: 0.65rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--gray-500);
            margin-bottom: 16px;
        }

        .record-breakdown-items {
            display: flex;
            gap: 12px;
        }

        .record-breakdown-item {
            flex: 1;
            text-align: center;
            padding: 12px 8px;
            background: rgba(220, 20, 60, 0.05);
            border: 1px solid rgba(220, 20, 60, 0.1);
            border-radius: 10px;
        }

        .breakdown-value {
            display: block;
            font-family: 'Instrument Serif', serif;
            font-size: 1.5rem;
            color: var(--white);
            line-height: 1;
            margin-bottom: 4px;
        }

        .breakdown-label {
            font-size: 0.6rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: var(--gray-500);
        }

        /* Comparison Bars */
        .record-comparison {
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .comparison-item {
            display: grid;
            grid-template-columns: 100px 1fr 40px;
            align-items: center;
            gap: 12px;
        }

        .comparison-name {
            font-size: 0.7rem;
            color: var(--gray-400);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .comparison-bar-wrap {
            height: 6px;
            background: var(--gray-800);
            border-radius: 6px;
            overflow: hidden;
        }

        .comparison-bar {
            height: 100%;
            width: var(--bar-width, 0%);
            background: linear-gradient(90deg, var(--accent), #ff6b6b);
            border-radius: 6px;
            transition: width 1s ease-out;
        }

        .comparison-item:first-child .comparison-bar {
            background: linear-gradient(90deg, var(--accent), #ff4444);
        }

        .comparison-value {
            font-family: 'Instrument Serif', serif;
            font-size: 0.9rem;
            color: var(--white);
            text-align: right;
        }

        /* Country Flags */
        .record-countries {
            display: flex;
            gap: 8px;
            margin-top: 16px;
            flex-wrap: wrap;
        }

        .country-flag {
            font-size: 1.5rem;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--gray-800);
            border-radius: 10px;
            transition: all 0.3s;
        }

        .country-flag:hover {
            border-color: var(--accent);
            transform: translateY(-2px);
        }

        /* Performances Section */
        .performances-section {
            padding: 80px 48px;
            border-top: 1px solid var(--gray-700);
        }
       
        .performances-header {
            text-align: center;
            margin-bottom: 50px;
        }
       
        .performances-title {
            font-family: 'Instrument Serif', serif;
            font-size: 2rem;
        }
       
        .performances-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
        }
       
        .performance-card {
            background: var(--dark);
            border: 1px solid var(--gray-700);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s;
        }
       
        .performance-card:hover {
            border-color: var(--gray-600);
            transform: translateY(-6px);
        }
       
        .performance-card.featured {
            grid-column: 1 / -1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            max-height: 320px;
        }

        .performance-card.featured .performance-image {
            height: 320px;
        }

        .performance-card.featured .performance-image img {
            object-position: center top;
        }

        .performance-card.featured.reverse {
            direction: rtl;
        }

        .performance-card.featured.reverse > * {
            direction: ltr;
        }

        .performance-card.featured.reverse .performance-image img {
            object-position: center 15%;
        }
       
        .performance-image {
            overflow: hidden;
        }
       
        .performance-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(60%) brightness(0.6);
            transition: all 0.5s;
        }

        .performance-card:hover .performance-image img {
            filter: grayscale(0%) brightness(0.85);
            transform: scale(1.05);
        }
       
        .performance-card:not(.featured) .performance-image {
            height: 200px;
        }
       
        .performance-content {
            padding: 28px;
        }
       
        .performance-date {
            font-size: 0.65rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 8px;
        }
       
        .performance-title {
            font-family: 'Instrument Serif', serif;
            font-size: 1.3rem;
            margin-bottom: 12px;
        }
       
        .performance-text {
            font-size: 0.9rem;
            color: var(--gray-400);
            line-height: 1.7;
            margin-bottom: 16px;
        }
       
        .performance-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
       
        .performance-tags span {
            padding: 6px 14px;
            background: var(--gray-800);
            border-radius: 100px;
            font-size: 0.7rem;
            color: var(--gray-400);
        }
       
        /* Awards Section */
        .awards-section {
            padding: 80px 48px;
            border-top: 1px solid var(--gray-700);
            background: var(--dark);
        }
       
        .awards-header {
            text-align: center;
            margin-bottom: 50px;
        }
       
        .awards-title {
            font-family: 'Instrument Serif', serif;
            font-size: 2rem;
        }
       
        .awards-list {
            max-width: 800px;
            margin: 0 auto;
        }
       
        .award-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 0;
            border-bottom: 1px solid var(--gray-800);
        }
       
        .award-item:last-child {
            border-bottom: none;
        }
       
        .award-year {
            font-family: 'Instrument Serif', serif;
            font-size: 1.5rem;
            color: var(--accent);
            min-width: 120px;
        }
       
        .award-name {
            font-size: 1rem;
            color: var(--gray-300);
        }
       
        /* Origin Section */
        .origin-section {
            padding: 100px 48px;
            border-top: 1px solid var(--gray-700);
        }
       
        .origin-grid {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 80px;
            max-width: 1200px;
            margin: 0 auto;
            align-items: center;
        }
       
        .origin-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
        }
       
        .origin-image img {
            width: 100%;
            aspect-ratio: 3/4;
            object-fit: cover;
            filter: grayscale(100%);
            transition: filter 0.5s ease;
        }

        .origin-image:hover img {
            filter: grayscale(0%);
        }
       
        .origin-image-caption {
            position: absolute;
            bottom: 20px;
            left: 20px;
            padding: 10px 18px;
            background: rgba(0,0,0,0.7);
            border-radius: 100px;
            font-size: 0.7rem;
            letter-spacing: 0.1em;
        }
       
        .origin-label {
            font-size: 0.6rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--accent);
        }
       
        .origin-title {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            margin: 16px 0 32px;
            line-height: 1.2;
        }
       
        .origin-title span {
            color: var(--accent);
        }
       
        .origin-text p {
            font-size: 1rem;
            color: var(--gray-400);
            line-height: 1.9;
            margin-bottom: 20px;
        }
       
        .origin-quote {
            margin-top: 40px;
            padding-left: 24px;
            border-left: 2px solid var(--accent);
        }
       
        .origin-quote blockquote {
            font-family: 'Instrument Serif', serif;
            font-size: 1.3rem;
            font-style: italic;
            color: var(--gray-300);
            line-height: 1.6;
        }
       
        .origin-quote cite {
            display: block;
            margin-top: 16px;
            font-size: 0.8rem;
            color: var(--gray-500);
            font-style: normal;
        }
       
        /* Personal Section - Stacked Rows */
        .personal-section {
            padding: 100px 48px;
            border-top: 1px solid var(--gray-700);
        }

        .personal-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .personal-eyebrow {
            display: inline-block;
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 16px;
            padding: 8px 16px;
            border: 1px solid rgba(220, 20, 60, 0.3);
            border-radius: 100px;
        }

        .personal-heading {
            font-family: 'Instrument Serif', serif;
            font-size: 3rem;
            letter-spacing: -0.02em;
        }

        .personal-heading em {
            font-style: italic;
            color: var(--accent);
        }

        .personal-stack {
            max-width: 1000px;
            margin: 0 auto;
        }

        .personal-row {
            display: flex;
            align-items: flex-start;
            gap: 40px;
            padding: 40px 0;
            border-bottom: 1px solid var(--gray-800);
            transition: all 0.4s ease;
        }

        .personal-row:first-child {
            border-top: 1px solid var(--gray-800);
        }

        .personal-row:hover {
            background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.03), transparent);
        }

        .personal-row-number {
            font-family: 'Instrument Serif', serif;
            font-size: 1rem;
            color: var(--gray-600);
            min-width: 40px;
            padding-top: 4px;
        }

        .personal-row-content {
            flex: 1;
            display: flex;
            align-items: flex-start;
            gap: 30px;
        }

        .personal-row-icon {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(220, 20, 60, 0.08);
            border: 1px solid rgba(220, 20, 60, 0.15);
            border-radius: 16px;
            color: var(--accent);
            flex-shrink: 0;
            transition: all 0.4s ease;
        }

        .personal-row:hover .personal-row-icon {
            background: rgba(220, 20, 60, 0.15);
            border-color: rgba(220, 20, 60, 0.3);
            transform: scale(1.05);
        }

        .personal-row-icon svg {
            width: 24px;
            height: 24px;
        }

        .personal-row-text {
            flex: 1;
            min-width: 0;
        }

        .personal-row-title {
            font-family: 'Instrument Serif', serif;
            font-size: 1.6rem;
            color: var(--white);
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }

        .personal-row:hover .personal-row-title {
            color: var(--accent);
        }

        .personal-row-desc {
            font-size: 0.95rem;
            color: var(--gray-400);
            line-height: 1.7;
        }

        .personal-row-quote {
            font-family: 'Instrument Serif', serif;
            font-size: 2.5rem;
            font-style: italic;
            color: var(--accent);
            line-height: 1.2;
            margin-bottom: 12px;
        }

        /* Right side elements */
        .personal-row-stat {
            text-align: center;
            padding: 20px 30px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--gray-800);
            border-radius: 16px;
            flex-shrink: 0;
        }

        .stat-number {
            display: block;
            font-family: 'Instrument Serif', serif;
            font-size: 3rem;
            color: var(--white);
            line-height: 1;
        }

        .stat-label {
            display: block;
            font-size: 0.65rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--gray-500);
            margin-top: 8px;
        }

        .personal-row-badge {
            padding: 12px 20px;
            background: linear-gradient(135deg, rgba(220, 20, 60, 0.15), rgba(220, 20, 60, 0.05));
            border: 1px solid rgba(220, 20, 60, 0.25);
            border-radius: 100px;
            flex-shrink: 0;
        }

        .personal-row-badge span {
            font-size: 0.75rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--accent);
        }

        .personal-row-achievement {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 20px;
            background: rgba(220, 20, 60, 0.08);
            border: 1px solid rgba(220, 20, 60, 0.15);
            border-radius: 12px;
            flex-shrink: 0;
        }

        .personal-row-achievement svg {
            width: 18px;
            height: 18px;
            color: var(--accent);
        }

        .personal-row-achievement span {
            font-size: 0.8rem;
            color: var(--white);
        }

        .personal-row-location {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 20px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--gray-800);
            border-radius: 12px;
            flex-shrink: 0;
        }

        .personal-row-location svg {
            width: 18px;
            height: 18px;
            color: var(--accent);
        }

        .personal-row-location span {
            font-size: 0.8rem;
            color: var(--gray-400);
            letter-spacing: 0.05em;
        }

        /* Highlight row */
        .personal-row.personal-row-highlight {
            background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.04), transparent);
            padding: 50px 30px;
            margin: 0 -30px;
            border-radius: 20px;
            border: none;
        }

        .personal-row.personal-row-highlight + .personal-row {
            border-top: none;
        }

        /* Impact Section */
        .impact-section {
            padding: 100px 48px;
            border-top: 1px solid var(--gray-700);
            background: var(--dark-light);
        }
       
        .impact-header {
            text-align: center;
            margin-bottom: 60px;
        }
       
        .impact-title {
            font-family: 'Instrument Serif', serif;
            font-size: 2.5rem;
            margin-bottom: 12px;
        }
       
        .impact-subtitle {
            font-size: 1rem;
            color: var(--gray-400);
        }
       
        .impact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            max-width: 900px;
            margin: 0 auto 60px;
        }
       
        .impact-stat {
            text-align: center;
            padding: 40px;
            background: var(--dark);
            border: 1px solid var(--gray-700);
            border-radius: 20px;
        }
       
        .impact-number {
            font-family: 'Instrument Serif', serif;
            font-size: 3.5rem;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 12px;
        }
       
        .impact-label {
            font-size: 0.85rem;
            color: var(--gray-400);
            line-height: 1.5;
        }
       
        .impact-features {
            max-width: 800px;
            margin: 0 auto;
        }
       
        .impact-feature {
            display: flex;
            gap: 24px;
            padding: 28px 0;
            border-bottom: 1px solid var(--gray-700);
        }
       
        .impact-feature:last-child {
            border-bottom: none;
        }
       
        .impact-feature-icon {
            width: 52px;
            height: 52px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gray-800);
            border-radius: 12px;
            color: var(--accent);
        }
       
        .impact-feature-icon svg {
            width: 24px;
            height: 24px;
        }
       
        .impact-feature-text strong {
            display: block;
            font-size: 1.1rem;
            margin-bottom: 4px;
        }
       
        .impact-feature-text span {
            font-size: 0.9rem;
            color: var(--gray-400);
        }
       
        /* ==================== STATS ==================== */
        .stats {
            padding: 100px 48px;
            background: var(--accent);
            color: var(--dark);
        }
       
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 48px;
            max-width: 1200px;
            margin: 0 auto;
        }
       
        .stats-item {
            text-align: center;
        }
       
        .stats-number {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(3rem, 6vw, 5rem);
            line-height: 1;
            color: var(--white);
        }

        .stats-label {
            font-size: 0.7rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--white);
            margin-top: 12px;
        }
       
        /* ==================== HALL OF FAME ==================== */
        .hall-of-fame {
            padding: 160px 48px;
            background: var(--dark);
            border-top: 1px solid var(--gray-700);
            position: relative;
            overflow: hidden;
        }
       
        .hall-of-fame::before {
            content: 'HALL OF FAME';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: 'Instrument Serif', serif;
            font-size: clamp(8rem, 18vw, 16rem);
            color: var(--gray-800);
            white-space: nowrap;
            pointer-events: none;
            opacity: 0.3;
            letter-spacing: -0.02em;
        }
       
        .hall-header {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 700px;
            margin: 0 auto 80px;
        }
       
        .hall-label {
            font-size: 0.6rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 20px;
        }
       
        .hall-title {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.1;
            margin-bottom: 20px;
        }
       
        .hall-subtitle {
            font-size: 1rem;
            color: var(--gray-400);
            line-height: 1.7;
        }
       
        .hall-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
       
        .hall-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            background: var(--dark-light);
            border: 1px solid var(--gray-700);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
       
        .hall-card:hover {
            border-color: var(--accent);
            transform: translateY(-12px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.4);
        }
       
        .hall-card-image {
            position: relative;
            aspect-ratio: 4/3;
            overflow: hidden;
        }
       
        .hall-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
       
        .hall-card:hover .hall-card-image img {
            filter: grayscale(0%);
            transform: scale(1.1);
        }
       
        .hall-card-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, var(--dark-light) 0%, transparent 50%);
        }
       
        .hall-card-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            padding: 8px 14px;
            background: var(--accent);
            color: var(--dark);
            font-size: 0.6rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            border-radius: 100px;
            z-index: 2;
        }
       
        .hall-card-content {
            padding: 28px;
            position: relative;
        }
       
        .hall-card-flag {
            font-size: 2rem;
            margin-bottom: 12px;
        }
       
        .hall-card-club {
            font-family: 'Instrument Serif', serif;
            font-size: 1.6rem;
            margin-bottom: 4px;
            transition: color 0.3s;
        }
       
        .hall-card:hover .hall-card-club {
            color: var(--accent);
        }
       
        .hall-card-years {
            font-size: 0.8rem;
            color: var(--gray-400);
            margin-bottom: 16px;
        }
       
        .hall-card-stats {
            display: flex;
            gap: 20px;
            padding-top: 16px;
            border-top: 1px solid var(--gray-700);
        }
       
        .hall-card-stat {
            text-align: center;
            flex: 1;
        }
       
        .hall-card-stat-value {
            font-family: 'Instrument Serif', serif;
            font-size: 1.5rem;
            color: var(--accent);
        }
       
        .hall-card-stat-label {
            font-size: 0.6rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--gray-500);
            margin-top: 2px;
        }
       
        .hall-card-arrow {
            position: absolute;
            bottom: 28px;
            right: 28px;
            width: 40px;
            height: 40px;
            border: 1px solid var(--gray-700);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
       
        .hall-card-arrow svg {
            width: 18px;
            height: 18px;
            color: var(--gray-500);
            transition: all 0.3s;
        }
       
        .hall-card:hover .hall-card-arrow {
            background: var(--accent);
            border-color: var(--accent);
        }
       
        .hall-card:hover .hall-card-arrow svg {
            color: var(--dark);
            transform: rotate(-45deg);
        }
       
        /* ==================== QUOTE ==================== */
        .quote {
            position: relative;
            padding: 160px 48px;
            background: var(--dark-light);
            border-top: 1px solid var(--gray-700);
        }
       
        .quote-mark {
            position: absolute;
            top: 80px;
            left: 48px;
            font-family: 'Instrument Serif', serif;
            font-size: 16rem;
            line-height: 0.5;
            color: var(--gray-800);
            pointer-events: none;
        }
       
        .quote-content {
            position: relative;
            max-width: 850px;
            margin: 0 auto;
        }
       
        .quote-text {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(1.6rem, 3.5vw, 2.5rem);
            font-style: italic;
            line-height: 1.5;
        }
       
        .quote-author {
            margin-top: 36px;
            font-size: 0.75rem;
            letter-spacing: 0.1em;
            color: var(--gray-500);
        }
       
        /* ==================== FOOTER ==================== */
        .footer {
            position: relative;
            padding: 100px 48px 50px;
            background: var(--dark);
            border-top: 1px solid var(--gray-700);
            overflow: hidden;
        }
       
        .footer-glow {
            position: absolute;
            bottom: -150px;
            left: 50%;
            transform: translateX(-50%);
            width: 700px;
            height: 350px;
            background: radial-gradient(ellipse, rgba(220, 20, 60, 0.12) 0%, transparent 70%);
            pointer-events: none;
        }
       
        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            max-width: 1300px;
            margin: 0 auto 70px;
            position: relative;
        }
       
        .footer-brand {
            font-family: 'Instrument Serif', serif;
            font-size: 1.8rem;
            font-style: italic;
            color: var(--white);
            letter-spacing: -0.02em;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-brand::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
        }
       
        .footer-tagline {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(2rem, 4.5vw, 3.5rem);
            text-align: center;
            flex: 1;
            padding: 0 40px;
        }
       
        .footer-tagline em {
            color: var(--accent);
            font-style: italic;
        }
       
        .footer-contact {
            text-align: right;
        }
       
        .footer-contact-label {
            font-size: 0.6rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--gray-500);
            margin-bottom: 8px;
        }
       
        .footer-contact a {
            font-size: 0.85rem;
            color: var(--white);
            transition: color 0.3s;
        }
       
        .footer-contact a:hover {
            color: var(--accent);
        }
       
        .footer-middle {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1300px;
            margin: 0 auto;
            padding: 36px 0;
            border-top: 1px solid var(--gray-700);
            border-bottom: 1px solid var(--gray-700);
            position: relative;
        }
       
        .footer-nav {
            display: flex;
            gap: 36px;
        }
       
        .footer-nav a {
            font-size: 0.8rem;
            color: var(--gray-400);
            transition: color 0.3s;
        }
       
        .footer-nav a:hover {
            color: var(--white);
        }
       
        .footer-social {
            display: flex;
            gap: 28px;
        }
       
        .footer-social a {
            font-size: 0.75rem;
            color: var(--gray-400);
            transition: color 0.3s;
        }
       
        .footer-social a:hover {
            color: var(--accent);
        }
       
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1300px;
            margin: 36px auto 0;
            position: relative;
        }
       
        .footer-copy {
            font-size: 0.65rem;
            color: var(--gray-600);
        }
       
        .footer-legal {
            display: flex;
            gap: 28px;
        }
       
        .footer-legal a {
            font-size: 0.65rem;
            color: var(--gray-600);
            transition: color 0.3s;
        }
       
        .footer-legal a:hover {
            color: var(--white);
        }
       
        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1024px) {
            .hero-right {
                display: none;
            }
           
            .side-label {
                display: none;
            }
           
            .about-container {
                grid-template-columns: 1fr;
                gap: 60px;
            }
           
            .about-quick-stats {
                grid-template-columns: repeat(4, 1fr);
            }
           
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
           
            .gallery-item.large,
            .gallery-item.medium,
            .gallery-item.small {
                width: 320px;
                height: 360px;
            }
           
            .menu-images {
                display: none;
            }
           
            .menu-content {
                width: 100%;
                padding: 120px 40px 40px;
            }
           
            .hall-grid {
                grid-template-columns: repeat(2, 1fr);
            }
           
            .hall-of-fame::before {
                font-size: 10rem;
            }
           
            .records-bento {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: auto;
            }

            .record-card.record-featured {
                grid-row: span 1;
                grid-column: span 2;
            }

            .record-featured .record-stat {
                font-size: 5rem;
            }

            .record-featured .record-plus {
                font-size: 3rem;
            }

            .record-breakdown-items {
                flex-wrap: wrap;
            }

            .record-breakdown-item {
                min-width: calc(50% - 6px);
            }

            .performances-grid {
                grid-template-columns: 1fr;
            }
           
            .performance-card.featured {
                grid-template-columns: 1fr;
            }
           
            .personal-row-content {
                flex-wrap: wrap;
            }

            .personal-row-text {
                flex: 1 1 100%;
                order: 1;
            }

            .personal-row-stat,
            .personal-row-badge,
            .personal-row-achievement,
            .personal-row-location {
                order: 2;
                margin-top: 16px;
            }

            .personal-heading {
                font-size: 2.5rem;
            }
           
            .origin-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }
           
            .origin-image {
                max-width: 500px;
            }
           
            .impact-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
            }
        }
       
        @media (max-width: 768px) {
            .header {
                padding: 16px 24px;
            }
           
            .header-store {
                display: none;
            }
           
            .hero-content {
                padding: 0 24px 80px;
            }
           
            .message,
            .about,
            .timeline-section,
            .stats,
            .hall-of-fame,
            .quote,
            .footer {
                padding-left: 24px;
                padding-right: 24px;
            }
           
            .field-header,
            .records-section,
            .performances-section,
            .awards-section,
            .origin-section,
            .personal-section,
            .impact-section {
                padding-left: 24px;
                padding-right: 24px;
            }
           
            .about-details-grid {
                grid-template-columns: 1fr;
            }
           
            .about-quick-stats {
                grid-template-columns: repeat(2, 1fr);
            }
           
            .timeline-section {
                padding: 100px 24px;
            }

            .timeline-header {
                text-align: center;
                margin-bottom: 60px;
            }

            .timeline-line-vertical {
                left: 12px;
            }

            .timeline-item {
                justify-content: flex-start !important;
                padding-left: 40px;
                margin-bottom: 40px;
            }

            .timeline-item-content {
                width: 100%;
                text-align: left !important;
                padding: 24px;
            }

            .timeline-item-content::after {
                display: none;
            }

            .timeline-item-dot {
                left: 12px;
                width: 14px;
                height: 14px;
            }

            .timeline-item.left .timeline-item-icon {
                margin-left: 0;
            }

            .timeline-item.left .timeline-item-stat {
                float: none;
            }

            .timeline-item-year {
                font-size: 1.8rem;
            }

            .timeline-item-title {
                font-size: 1.2rem;
            }

            .timeline-item-icon {
                width: 40px;
                height: 40px;
            }

            .timeline-item-icon svg {
                width: 18px;
                height: 18px;
            }

            .gallery-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }

            .gallery-desc {
                text-align: left;
            }
           
            .gallery-header {
                padding: 0 24px;
            }
           
            .gallery-track {
                padding: 0 24px 20px;
            }
           
            .footer-top {
                flex-direction: column;
                align-items: center;
                gap: 32px;
                text-align: center;
            }
           
            .footer-contact {
                text-align: center;
            }
           
            .footer-tagline {
                padding: 0;
            }
           
            .footer-middle {
                flex-direction: column;
                gap: 24px;
            }
           
            .menu-content {
                padding: 100px 24px 32px;
            }
           
            .menu-nav a {
                font-size: 2rem;
            }
           
            .menu-bottom {
                flex-direction: column;
                gap: 32px;
                align-items: flex-start;
            }
           
            .hall-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }
           
            .hall-of-fame::before {
                display: none;
            }
           
            .records-bento {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }

            .record-card.record-featured {
                grid-column: span 1;
            }

            .records-title {
                font-size: 2.2rem;
            }

            .record-stat {
                font-size: 3.5rem;
            }

            .record-featured .record-stat {
                font-size: 4rem;
            }

            .record-plus {
                font-size: 2rem;
            }

            .record-featured .record-plus {
                font-size: 2.5rem;
            }

            .record-stat-text {
                font-size: 3rem;
            }

            .record-card {
                padding: 24px;
            }

            .record-breakdown-items {
                flex-direction: column;
            }

            .record-breakdown-item {
                min-width: 100%;
            }

            .comparison-item {
                grid-template-columns: 80px 1fr 35px;
                gap: 8px;
            }

            .comparison-name {
                font-size: 0.65rem;
            }

            .country-flag {
                width: 36px;
                height: 36px;
                font-size: 1.2rem;
            }
           
            .personal-row {
                flex-direction: column;
                gap: 20px;
                padding: 30px 0;
            }

            .personal-row-number {
                display: none;
            }

            .personal-row-content {
                flex-direction: column;
                gap: 20px;
            }

            .personal-row-icon {
                width: 48px;
                height: 48px;
            }

            .personal-row-icon svg {
                width: 20px;
                height: 20px;
            }

            .personal-row-title {
                font-size: 1.4rem;
            }

            .personal-row-quote {
                font-size: 2rem;
            }

            .personal-heading {
                font-size: 2rem;
            }

            .personal-row.personal-row-highlight {
                margin: 0;
                padding: 30px 20px;
            }

            .stat-number {
                font-size: 2.5rem;
            }
           
            .field-header-bg {
                font-size: 4rem;
            }
           
            .award-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
           
            .impact-feature {
                flex-direction: column;
                gap: 16px;
            }
        }
       
        @media (max-width: 480px) {
            .gallery-item.large,
            .gallery-item.medium,
            .gallery-item.small {
                width: 280px;
                height: 320px;
            }
           
            .field-header-bg {
                display: none;
            }
        }
