
        /*                                                                                                                                                                             
           ğŸ¨ RENK TEMASÄ±  €” Tek yerden deÄŸiÅŸtir!
                                                                                                                                                                                     */
        :root {
            /* Ana vurgu rengi  €” hex */
            --accent: #D4D4D4;
            /* Ana vurgu rengi  €” sadece RGB kanallarÄ± (rgba() iÃ§in) */
            --accent-rgb: 212, 212, 212;
        }
        /*                                                                                                                                                                             
           RESET & BASE
                                                                                                                                                                                     */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html { scroll-behavior: smooth; }

        body {
            background-color: #050505;
            color: #E0E0E0;
            font-family: 'Montserrat', sans-serif;
            overflow: hidden; /* Tamamen kaydırmayı kapatır */
            -ms-overflow-style: none;  /* IE ve Edge */
            scrollbar-width: none;  /* Firefox */
            -webkit-font-smoothing: antialiased;
        }

        /* Tüm scrollbarları (Chrome, Safari, Edge) gizle */
        body::-webkit-scrollbar, html::-webkit-scrollbar {
            display: none;
        }

        img { max-width: 100%; display: block; }

        /*                                                                                                                                                                             
           FLOATING GOLD PARTICLES
                                                                                                                                                                                     */
        .particles-container {
            position: fixed; top: 0; left: 0;
            width: 100%; height: 100%;
            pointer-events: none; z-index: 999; overflow: hidden;
        }

        .particle {
            position: absolute; width: 3px; height: 3px;
            background: radial-gradient(circle, var(--accent), transparent);
            border-radius: 50%; opacity: 0;
            animation: floatParticle linear infinite;
        }

        .particle:nth-child(1)  { left: 5%;  animation-duration: 18s; animation-delay: 0s; }
        .particle:nth-child(2)  { left: 15%; animation-duration: 22s; animation-delay: 3s; }
        .particle:nth-child(3)  { left: 25%; animation-duration: 16s; animation-delay: 1s; }
        .particle:nth-child(4)  { left: 35%; animation-duration: 25s; animation-delay: 5s; width: 4px; height: 4px; }
        .particle:nth-child(5)  { left: 45%; animation-duration: 20s; animation-delay: 2s; }
        .particle:nth-child(6)  { left: 55%; animation-duration: 19s; animation-delay: 4s; }
        .particle:nth-child(7)  { left: 65%; animation-duration: 23s; animation-delay: 1.5s; }
        .particle:nth-child(8)  { left: 75%; animation-duration: 17s; animation-delay: 3.5s; }
        .particle:nth-child(9)  { left: 85%; animation-duration: 21s; animation-delay: 0.5s; }
        .particle:nth-child(10) { left: 92%; animation-duration: 24s; animation-delay: 2.5s; width: 4px; height: 4px; }
        .particle:nth-child(11) { left: 10%; animation-duration: 26s; animation-delay: 6s; }
        .particle:nth-child(12) { left: 50%; animation-duration: 15s; animation-delay: 7s; }

        @keyframes floatParticle {
            0%   { transform: translateY(110vh) translateX(0px) scale(0); opacity: 0; }
            10%  { opacity: 0.6; transform: translateY(90vh) translateX(10px) scale(1); }
            50%  { opacity: 0.3; transform: translateY(50vh) translateX(-15px) scale(0.8); }
            90%  { opacity: 0.5; transform: translateY(10vh) translateX(20px) scale(0.6); }
            100% { transform: translateY(-10vh) translateX(0px) scale(0); opacity: 0; }
        }

        /*                                                                                                                                                                             
           SCROLL-TRIGGERED ANIMATIONS
                                                                                                                                                                                     */
        .reveal {
            opacity: 0; transform: translateY(60px);
            transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal.visible { opacity: 1; transform: translateY(0); }

        .reveal-left {
            opacity: 0; transform: translateX(-80px);
            transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                        transform 1s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal-left.visible { opacity: 1; transform: translateX(0); }

        .reveal-right {
            opacity: 0; transform: translateX(80px);
            transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                        transform 1s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal-right.visible { opacity: 1; transform: translateX(0); }

        .reveal-scale {
            opacity: 0; transform: scale(0.85);
            transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
                        transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal-scale.visible { opacity: 1; transform: scale(1); }

        /*                                                                                                                                                                             
           ANA CONTAINER
                                                                                                                                                                                     */
        .baron-container {
            max-width: 1000px; margin: 0 auto; position: relative;
            background-color: #000;
            background-image: url('https://www.transparenttextures.com/patterns/black-orchid.png');
            background-repeat: repeat;
        }

        /*                                                                                                                                                                             
           HERO HEADER
                                                                                                                                                                                     */
        .hero { position: relative; height: 600px; overflow: hidden; }

        .hero-img {
            position: absolute; inset: 0; width: 100%; height: 100%;
            object-fit: cover; opacity: 0.7; transform: scale(1.1);
            animation: heroZoom 20s ease-in-out infinite alternate;
        }

        @keyframes heroZoom {
            0%   { transform: scale(1.1) translateY(0); }
            100% { transform: scale(1.2) translateY(-20px); }
        }

        .hero-overlay {
            position: absolute; inset: 0;
            background: 
                linear-gradient(to top, #000 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.2) 70%, rgba(0,0,0,0.4) 100%),
                linear-gradient(to right, rgba(0,0,0,0.6) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.6) 100%);
        }

        .hero-content {
            position: absolute; bottom: 0; left: 0; right: 0;
            padding: 0 60px 60px; z-index: 2;
        }

        .hero-line {
            width: 0; height: 1px;
            background: linear-gradient(to right, var(--accent), rgba(var(--accent-rgb),0.2));
            margin-bottom: 20px;
            animation: lineExpand 2s 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }
        @keyframes lineExpand { to { width: 120px; } }

        .hero-title {
            font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 900;
            color: var(--accent); letter-spacing: 5px; text-transform: uppercase;
            text-shadow: 2px 2px 12px rgba(0,0,0,0.9), 0 0 40px rgba(var(--accent-rgb),0.2);
            opacity: 0; animation: fadeSlideUp 1.5s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-family: 'Cormorant Garamond', serif; font-size: 17px; font-style: italic;
            color: #888888; letter-spacing: 3px; margin-top: 12px;
            opacity: 0; animation: fadeSlideUp 1.5s 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        @keyframes fadeSlideUp {
            from { opacity: 0; transform: translateY(30px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .hero::before, .hero::after {
            content: ''; position: absolute; z-index: 3;
            border-color: rgba(var(--accent-rgb),0.3); border-style: solid;
            width: 60px; height: 60px; opacity: 0;
            animation: cornerFade 2s 1.5s ease forwards;
        }
        .hero::before { top: 30px; left: 30px; border-width: 1px 0 0 1px; }
        .hero::after { bottom: 30px; right: 30px; border-width: 0 1px 1px 0; }
        @keyframes cornerFade { to { opacity: 1; } }

        .content-section-baron {
            padding: 0px 20px 0px;
        }

            .content-row-baron {
                display: flex; gap: 0; align-items: stretch;
                margin-bottom: 30px; min-height: 350px;
            }

            .content-text-block-baron {
                flex: 1; display: flex; flex-direction: column;
                justify-content: center; padding: 30px 35px;
                position: relative; transition: background 0.6s ease;
            }

            .content-text-block-baron::before {
                content: ''; position: absolute; left: 0;
                top: 20%; bottom: 20%; width: 2px;
                background: linear-gradient(to bottom, transparent, rgba(var(--accent-rgb),0.4), transparent);
                opacity: 0; transition: opacity 0.6s ease;
            }
            .content-row-baron:hover .content-text-block-baron::before { opacity: 1; }

            .section-marker-baron {
                font-size: 18px; font-weight: 700; color: rgba(var(--accent-rgb),0.4);
                margin-bottom: 15px; letter-spacing: 5px;
                font-family: 'Montserrat', sans-serif;
            }

            .content-text-block-baron p {
                font-size: 13.5px; line-height: 1.9;
                text-align: justify; opacity: 0.88;
                color: #E0E0E0; margin-bottom: 14px;
            }

        /*                                                                                                                                                                             
           CHAPTER GATE TRANSITIONS
                                                                                                                                                                                     */
        .chapter-gate {
            text-align: center; padding: 70px 40px;
            position: relative; overflow: hidden;
        }

        .gate-line {
            width: 0; height: 1px;
            background: linear-gradient(to right, transparent, var(--accent), transparent);
            margin: 0 auto 25px;
            transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .chapter-gate.visible .gate-line { width: 280px; }

        .gate-line-bottom {
            width: 0; height: 1px;
            background: linear-gradient(to right, transparent, var(--accent), transparent);
            margin: 25px auto 0;
            transition: width 1.5s 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .chapter-gate.visible .gate-line-bottom { width: 280px; }

        .gate-diamond {
            display: inline-block; color: var(--accent); font-size: 10px;
            opacity: 0; transform: rotate(0deg) scale(0);
            transition: all 0.8s 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            margin-bottom: 15px;
        }
        .chapter-gate.visible .gate-diamond { opacity: 0.6; transform: rotate(360deg) scale(1); }

        .chapter-number {
            font-family: 'Montserrat', sans-serif; font-size: 11px;
            letter-spacing: 8px; text-transform: uppercase; color: var(--accent);
            opacity: 0; transform: translateY(20px);
            transition: all 0.8s 0.2s cubic-bezier(0.16, 1, 0.3, 1);
            margin-bottom: 12px;
        }
        .chapter-gate.visible .chapter-number { opacity: 0.6; transform: translateY(0); }

        .chapter-title {
            font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700;
            color: #F5F5F5; letter-spacing: 6px; text-transform: uppercase;
            opacity: 0; transform: translateY(20px);
            transition: all 1s 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            margin-bottom: 10px;
        }
        .chapter-gate.visible .chapter-title { opacity: 1; transform: translateY(0); }

        .chapter-quote {
            font-family: 'Cormorant Garamond', serif; font-size: 16px; font-style: italic;
            color: #666666; letter-spacing: 1px;
            opacity: 0; transform: translateY(15px);
            transition: all 0.8s 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .chapter-gate.visible .chapter-quote { opacity: 1; transform: translateY(0); }

        /*                                                                                                                                                                             
           CONTENT SECTIONS - SHARED
                                                                                                                                                                                     */
        .content-section { padding: 10px 50px 40px; }

        .content-row {
            display: flex; gap: 0; align-items: stretch;
            margin-bottom: 30px; min-height: 350px;
        }

        .content-text-block {
            flex: 1; display: flex; flex-direction: column;
            justify-content: center; padding: 30px 35px;
            position: relative; transition: background 0.6s ease;
        }

        .content-text-block::before {
            content: ''; position: absolute; left: 0;
            top: 20%; bottom: 20%; width: 2px;
            background: linear-gradient(to bottom, transparent, rgba(var(--accent-rgb),0.4), transparent);
            opacity: 0; transition: opacity 0.6s ease;
        }
        .content-row:hover .content-text-block::before { opacity: 1; }

        .section-marker {
            font-size: 18px; font-weight: 700; color: rgba(var(--accent-rgb),0.4);
            margin-bottom: 15px; letter-spacing: 5px;
            font-family: 'Montserrat', sans-serif;
        }

        .content-text-block p {
            font-size: 13.5px; line-height: 1.9;
            text-align: justify; opacity: 0.88;
            color: #E0E0E0; margin-bottom: 14px;
        }

        /*                                                                                                                                                                             
           STYLE A  €” Diagonal Clip-Path (BÃ¶lÃ¼m 1, 1. gÃ¶rsel)
                                                                                                                                                                                     */
        .clip-img-wrapper {
            flex: 1.2; position: relative; overflow: hidden; min-height: 350px;
        }
        .clip-img-wrapper img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 1.2s ease;
            filter: brightness(0.85) contrast(1.1);
        }
        .clip-img-wrapper:hover img {
            transform: scale(1.08); filter: brightness(0.95) contrast(1.05);
        }
        .clip-right { clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%); }

        /*                                                                                                                                                                             
           STYLE B  €” 3D Offset Frame (BÃ¶lÃ¼m 1, 2. gÃ¶rsel)
           FotoÄŸraf, altÄ±n Ã§erÃ§evenin iÃ§inden taÅŸar ve gÃ¶lge ile derinlik yaratÄ±r
                                                                                                                                                                                     */
        .offset-frame-wrapper {
            flex: 1.2; position: relative; display: flex;
            align-items: center; justify-content: center;
            padding: 30px; min-height: 350px;
        }

        .offset-frame-inner {
            position: relative; width: 100%; height: 100%;
        }

        /* Gold decorative frame  €” offset behind the image */
        .offset-frame-inner::before {
            content: ''; position: absolute;
            top: 15px; left: -15px; right: 15px; bottom: -15px;
            border: 1px solid rgba(var(--accent-rgb),0.35);
            z-index: 0;
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .offset-frame-wrapper:hover .offset-frame-inner::before {
            top: 20px; left: -20px; right: 20px; bottom: -20px;
            border-color: rgba(var(--accent-rgb),0.6);
            box-shadow: 0 0 30px rgba(var(--accent-rgb),0.1);
        }

        .offset-frame-inner img {
            position: relative; z-index: 1;
            width: 100%; height: 100%; object-fit: cover;
            filter: brightness(0.8) contrast(1.1) saturate(0.9);
            transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
            box-shadow: 10px 10px 30px rgba(0,0,0,0.6);
        }

        .offset-frame-wrapper:hover .offset-frame-inner img {
            transform: translate(-3px, -3px);
            filter: brightness(0.9) contrast(1.05) saturate(1);
        }

        /*                                                                                                                                                                             
           STYLE C  €” Gradient Mask Bleed (BÃ¶lÃ¼m 2)
           FotoÄŸraf saÄŸ tarafta arka plana eriyerek kaybolur
                                                                                                                                                                                     */
        .bleed-img-wrapper {
            flex: 1.4; position: relative; overflow: hidden; min-height: 350px;
        }

        .bleed-img-wrapper img {
            width: 100%; height: 100%; object-fit: cover;
            filter: brightness(0.75) contrast(1.15);
            -webkit-mask-image: linear-gradient(to right, black 50%, transparent 95%);
            mask-image: linear-gradient(to right, black 50%, transparent 95%);
            transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
        }

        .bleed-img-wrapper:hover img {
            transform: scale(1.05);
            filter: brightness(0.85) contrast(1.1);
        }

        /* Subtle grain overlay */
        .bleed-img-wrapper::after {
            content: ''; position: absolute; inset: 0;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(0,0,0,0.03) 2px,
                rgba(0,0,0,0.03) 4px
            );
            pointer-events: none; z-index: 1;
        }

        /*                                                                                                                                                                             
           STYLE D  €” Cinematic Letterbox (BÃ¶lÃ¼m 3, 1. gÃ¶rsel)
           Ãœst ve alt sinematik barlar + scan line efekti
                                                                                                                                                                                     */
        .cinematic-wrapper {
            flex: 1.2; position: relative; overflow: hidden;
            min-height: 350px; background: #000;
        }

        .cinematic-wrapper img {
            width: 100%; height: 100%; object-fit: cover;
            filter: brightness(0.7) contrast(1.2) saturate(0.85);
            transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 1s ease;
        }

        .cinematic-wrapper:hover img {
            transform: scale(1.06);
            filter: brightness(0.8) contrast(1.15) saturate(0.9);
        }

        /* Scan line overlay  €” applied via inner div */
        .cinematic-scanlines {
            position: absolute; inset: 0; z-index: 3; pointer-events: none;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 3px,
                rgba(0,0,0,0.08) 3px,
                rgba(0,0,0,0.08) 4px
            );
            mix-blend-mode: multiply;
        }

        /* Small timestamp-style text in corner */
        .cinematic-tag {
            position: absolute; bottom: 15px; right: 15px; z-index: 4;
            font-family: 'Montserrat', sans-serif; font-size: 9px;
            letter-spacing: 3px; color: rgba(var(--accent-rgb),0.4);
            text-transform: uppercase;
        }

        /*                                                                                                                                                                             
           STYLE E  €” Overlapping Stacked Cards (Mosaic yerine)
           3 fotoÄŸraf Ã¼st Ã¼ste binerek fan gibi aÃ§Ä±lÄ±yor
                                                                                                                                                                                     */
        .stacked-cards {
            position: relative; height: 420px;
            margin: 20px 50px 40px; perspective: 1200px;
        }

        .stacked-card {
            position: absolute; overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.5);
            transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1),
                        box-shadow 0.6s ease;
        }

        .stacked-card img {
            width: 100%; height: 100%; object-fit: cover;
            filter: brightness(0.75) contrast(1.1);
        }

        /* Card 1  €” Back, rotated left */
        .stacked-card:nth-child(1) {
            width: 380px; height: 280px;
            top: 50px; left: 30px;
            transform: rotate(-4deg);
            z-index: 1;
            border: 1px solid rgba(var(--accent-rgb),0.15);
        }
        .stacked-cards:hover .stacked-card:nth-child(1) {
            transform: rotate(-7deg) translate(-15px, -5px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.6);
        }

        /* Card 2  €” Middle, straight */
        .stacked-card:nth-child(2) {
            width: 420px; height: 320px;
            top: 30px; left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            border: 1px solid rgba(var(--accent-rgb),0.25);
        }
        .stacked-cards:hover .stacked-card:nth-child(2) {
            transform: translateX(-50%) translateY(-8px);
            box-shadow: 0 25px 60px rgba(0,0,0,0.7);
        }

        /* Card 3  €” Front right, rotated right */
        .stacked-card:nth-child(3) {
            width: 350px; height: 260px;
            top: 70px; right: 30px;
            transform: rotate(5deg);
            z-index: 2;
            border: 1px solid rgba(var(--accent-rgb),0.2);
        }
        .stacked-cards:hover .stacked-card:nth-child(3) {
            transform: rotate(8deg) translate(15px, -5px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.6);
        }

        /*                                                                                                                                                                             
           STYLE F  €” Rounded Glow Frame (BÃ¶lÃ¼m 3, son gÃ¶rsel)
           Yuvarlak kÃ¶ÅŸeli, Ä±ÅŸÄ±klÄ± Ã§erÃ§eveli gÃ¶rsel
                                                                                                                                                                                     */
        .glow-frame-wrapper {
            flex: 1.2; position: relative; display: flex;
            align-items: center; justify-content: center;
            padding: 25px; min-height: 350px;
        }

        .glow-frame-inner {
            position: relative; width: 100%;
            border-radius: 8px; overflow: hidden;
            box-shadow: 0 0 0 1px rgba(var(--accent-rgb),0.2),
                        0 10px 40px rgba(0,0,0,0.5),
                        0 0 60px rgba(var(--accent-rgb),0.05);
            transition: box-shadow 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .glow-frame-wrapper:hover .glow-frame-inner {
            box-shadow: 0 0 0 1px rgba(var(--accent-rgb),0.4),
                        0 15px 50px rgba(0,0,0,0.6),
                        0 0 80px rgba(var(--accent-rgb),0.12);
        }

        .glow-frame-inner img {
            width: 100%; height: 100%; object-fit: cover;
            filter: brightness(0.8) contrast(1.1);
            transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
        }

        .glow-frame-wrapper:hover .glow-frame-inner img {
            transform: scale(1.05);
            filter: brightness(0.9) contrast(1.05);
        }

        /* Corner accent marks on glow frame */
        .glow-frame-inner::before, .glow-frame-inner::after {
            content: ''; position: absolute; z-index: 2;
            width: 30px; height: 30px;
            border-color: rgba(var(--accent-rgb),0.5); border-style: solid;
            transition: all 0.6s ease;
        }
        .glow-frame-inner::before {
            top: 10px; left: 10px;
            border-width: 1px 0 0 1px; border-radius: 3px 0 0 0;
        }
        .glow-frame-inner::after {
            bottom: 10px; right: 10px;
            border-width: 0 1px 1px 0; border-radius: 0 0 3px 0;
        }
        .glow-frame-wrapper:hover .glow-frame-inner::before,
        .glow-frame-wrapper:hover .glow-frame-inner::after {
            width: 40px; height: 40px;
            border-color: rgba(var(--accent-rgb),0.8);
        }

        /*                                                                                                                                                                             
           PARALLAX IMAGE BANDS
                                                                                                                                                                                     */
        .parallax-band {
            height: 300px; position: relative;
            overflow: hidden; margin: 40px 0;
            clip-path: polygon(0 40px, 100% 0, 100% calc(100% - 40px), 0 100%);
        }
        .parallax-band img {
            position: absolute; width: 100%; height: 140%;
            object-fit: cover; top: -20%;
            transition: transform 0.1s linear;
            filter: brightness(0.6) contrast(1.15);
            animation: autoParallax 20s ease-in-out infinite alternate;
        }
        .parallax-band::before {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(to bottom,
                rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 30%,
                rgba(0,0,0,0.1) 70%, rgba(0,0,0,0.5) 100%);
            z-index: 1;
        }

        .parallax-overlay-text {
            position: absolute; inset: 0;
            display: flex; align-items: center; justify-content: center; z-index: 3;
        }
        .parallax-overlay-text span {
            font-family: 'Playfair Display', serif; font-size: 14px;
            letter-spacing: 10px; text-transform: uppercase;
            color: rgba(var(--accent-rgb),0.5);
            text-shadow: 0 0 20px rgba(0,0,0,0.8);
        }

        /*                                                                                                                                                                             
           TIMELINE
                                                                                                                                                                                     */
        .timeline-section { padding: 10px 50px 30px; position: relative; }

        .timeline-line {
            position: absolute; left: 72px; top: 0; bottom: 0;
            width: 1px;
            background: linear-gradient(to bottom, transparent, rgba(var(--accent-rgb),0.25), transparent);
        }

        .timeline-entry { padding-left: 50px; margin-bottom: 30px; position: relative; }

        .timeline-marker {
            position: absolute; left: -6px; top: 4px;
            width: 12px; height: 12px;
            background: #0a0a0a; border: 1px solid rgba(var(--accent-rgb),0.5);
            transform: rotate(45deg);
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .timeline-entry:hover .timeline-marker {
            background: var(--accent); border-color: var(--accent);
            box-shadow: 0 0 15px rgba(var(--accent-rgb),0.4);
            transform: rotate(45deg) scale(1.2);
        }

        .timeline-period {
            font-family: 'Playfair Display', serif; font-size: 14px;
            letter-spacing: 4px; color: var(--accent);
            text-transform: uppercase; margin-bottom: 8px; opacity: 0.85;
        }
        .timeline-text {
            font-size: 13px; line-height: 1.8;
            text-align: justify; opacity: 0.8; color: #AAAAAA;
        }

        /*                                                                                                                                                                             
           UTILITIES
                                                                                                                                                                                     */

        .gold-line {
            border: none; height: 1px;
            background: linear-gradient(to right, transparent, rgba(var(--accent-rgb),0.35), transparent);
            margin: 0 50px;
        }

        /*                                                                                                                                                                             
           CLOSING QUOTE
                                                                                                                                                                                     */
        .closing-quote { text-align: center; padding: 60px; position: relative; }

        .closing-quote::before {
            content: ' '; display: block; font-size: 50px;
            color: var(--accent); opacity: 0; transform: scale(0.5);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); margin-bottom: 15px;
        }
        .closing-quote.visible::before { opacity: 0.25; transform: scale(1); }

        .closing-quote-text {
            font-family: 'Cormorant Garamond', serif; font-size: 24px;
            font-style: italic; color: #F5F5F5; letter-spacing: 2px; line-height: 1.7;
            opacity: 0; transform: translateY(20px);
            transition: all 1.2s 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .closing-quote.visible .closing-quote-text { opacity: 1; transform: translateY(0); }

        .closing-quote-author {
            font-family: 'Montserrat', sans-serif; font-size: 10px;
            color: #666666; letter-spacing: 5px; text-transform: uppercase;
            margin-top: 20px; opacity: 0; transition: opacity 1s 0.8s ease;
        }
        .closing-quote.visible .closing-quote-author { opacity: 1; }

        /*                                                                                                                                                                             
           HERO NAV & TABS
                                                                                                                                                                                     */
        .hero-nav {
            display: flex; justify-content: center; gap: 40px; margin: 30px 0 60px;
        }
        .hero-nav a {
            color: var(--accent); text-decoration: none; font-family: 'Playfair Display', serif;
            font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
            padding-bottom: 5px; border-bottom: 1px solid transparent; transition: all 0.3s ease;
        }
        .hero-nav a:hover { border-bottom: 1px solid var(--accent); opacity: 0.8; }

        .custom-tabs { margin: 40px auto; max-width: 800px; }
        .tab-buttons {
            display: flex; justify-content: center; gap: 20px; margin-bottom: 30px;
            border-bottom: 1px solid rgba(var(--accent-rgb), 0.2); padding-bottom: 10px;
        }
        .tab-btn {
            background: none; border: none; color: #888888; font-family: 'Montserrat', sans-serif;
            font-size: 13px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
            padding: 10px 20px; transition: all 0.3s ease; position: relative;
        }
        .tab-btn:hover { color: var(--accent); }
        .tab-btn.active { color: var(--accent); font-weight: bold; }
        .tab-btn.active::after {
            content: ''; position: absolute; bottom: -11px; left: 0; width: 100%;
            height: 2px; background: var(--accent); box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.5);
        }
        .tab-content { display: none; padding: 20px 40px; background: rgba(255,255,255,0.02); border-left: 2px solid var(--accent); }
        .tab-content.active { display: block; animation: fadeIn 0.5s ease; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

        /*                                                                                                                                                                             
           FOOTER
                                                                                                                                                                                     */
        .baron-footer {
            border-top: 1px solid rgba(255,255,255,0.04);
            padding: 25px 50px; text-align: center;
        }
        .baron-footer p { font-size: 10px; color: #3a3a3a; letter-spacing: 2px; }
        .baron-footer a {
            color: var(--accent); text-decoration: none;
            opacity: 0.5; transition: opacity 0.3s ease;
        }
        .baron-footer a:hover { opacity: 1; }
    
