:root {
            --bg-color: #050505;
            --text-main: #ffffff;
            --text-muted: #a3a3a3;
            --accent-gold: #c8b796; /* Matching the golden/tan headers */
            --border-color: #2a2a2a;
            --font-serif: 'Inter', serif;
            --font-sans: 'Inter', sans-serif;
        }

        /* Basic Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color:#fff;
            color: var(--text-main);
            font-family: var(--font-sans);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: inherit;
            text-decoration: none;
			transition: all 0.3s ease-in-out;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 4px;
            object-fit: cover;
        }

        /* Container */
        .container {
            width:100%:
        }

        /* Header & Navigation */
        header {
            padding: 20px 0;
            border-bottom: 1px solid transparent;
            position: fixed;
			width:100%;
			transition: background-color 0.7s ease-in-out;
			background-color: transparent; /* Transparent initially */
			z-index:999;
        }
		

		header.scrolled {
			background-color:#222;
		}

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
			padding:0 40px;
        }

        .logo {
            font-size: 1.1rem;
            font-weight: 500;
            letter-spacing: -0.5px;
        }
		
		.nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-links_mobile {
            display: flex;
            gap: 2rem;
            align-items: center;
			position:absolute;
			top:-20em;
        }

        .nav-links_mobile a {
            font-size: 0.9rem;
            color: var(--text-muted);
            transition: color 0.3s;
        }

        .nav-links_mobile a:hover, .nav-links_mobile a.active {
            color: var(--text-main);
        }
		
		.dropdown{
			display:block;
			padding: 0.5em;
		}
		
		.dropdown-content{
			display: none;
			position: absolute;
			width: 18em;
			right: 2em;
			opacity: 0;
			transition: all 0.3s ease-in-out;
			background-color: rgba(20,20,20,0.75);
			padding: 2em;
			border-radius: 0.5em;
		}
		
		.dropdown-content a{
			position:relative;
			float:right;
			margin:0.5em 1em;
			border-bottom:1px solid rgba(255,255,255,0.3);
			color:#eee;
		}
		
		.dropdown-content a:hover{
			color:#fff;
		}
		
		.dropdown-content a:first-child{
			padding-top:1em;
		}
		
		.dropdown:hover .dropdown-content{
			display:block;
			opacity:1;
			transition: all 0.3s ease-in-out;
		}


        /* Hamburger Menu (Mobile) */
        .hamburger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
        }

        .hamburger-line {
            display: block;
            width: 25px;
            height: 2px;
            margin: 5px auto;
            background-color: var(--text-main);
            transition: all 0.3s ease-in-out;
        }
		
		.hero{
			background-image: url("../images/hero_02.webp");
			background-position-y:bottom;
			background-size:cover;
			height: 100vh;
			display: grid;
			grid-template-columns: 1fr 1fr 1fr;
			grid-template-rows: 1fr 8fr 3fr;
			column-gap: 1em;
			padding: 5em 14em;
			grid-template-areas:
				"box-1 box-1 box-1"
				"box-2 box-2 box-2"
				"box-3 box-4 box-5";
			/* clip-path: polygon(0% 0%, 100.21% 0%, 100% 87.06%, 0% 100.37%); */
		}
		
		.hero span{
			display: block;
			background: #fff;
			width: 8em;
			height: 0.05em;
			margin-top: 0.4em;
		}
		
		.box{
			display:grid;
		}
			
		
		.hero .box  h2{
			text-transform: uppercase;
		    font-size: 5em;
			line-height: 1em;
			align-self: center;
		}
		
		.hero .box em{
		    font-size: 3em;
			line-height: 1em;
			align-self: start;
		}
		
		.hero .box i{
		    font-family:"GFS Didot", serif;
			font-weight:300;
			text-transform:capitalize;
			text-indent:none;
		}
		
		.hero .box p{
			font-size: 1.2em;
			align-self: start;
			text-align: right;
			line-height: 1.2em;
			font-weight: 300;
		}
		
		
		/*ART_01*/
		
		.art_01{
			display: grid;
			grid-template-columns: 2fr 1fr;
			grid-template-rows: 1fr 2fr 1fr;
			column-gap: 6em;
			padding: 5em 14em;
			grid-template-areas:
				"box-1 box-2"
				"box-3 box-2"
				"box-5 box-6";
			align-items: start;
			border-bottom:1px solid rgba(255,255,255,0.2);
			background-color:#eee;
		}
		
		.art_01 figure{
			display:block;
			background-image: url("../images/art_01.webp");
			background-position:center 80%;
			background-size:cover;
			border-radius: 0.5em;
			height: 12em;
		}
		
		h3{
			font-family:"GFS Didot", serif;
			font-weight:700;
			font-size:1.8em;
			color: #444;
			line-height:1.2em;
		}
		
		.subTitle_01{
			font-size: 1.9em;
			align-self: end;
			text-align: left;
			line-height: 1.2em;
			font-weight:200;
			color: #444;
		}
		
		.subTitle_02{
			align-self: end;
			text-align: left;
			line-height: 1.8em;
			color:#005ea3;
			font-family: "GFS Didot", serif;
			font-weight: 700;
			font-size: 2em;
			text-indent:none;
			text-decoration:none;
			color: #444;
		}
		
		.art_01 p{
			font-size: 2.2em;
			align-self: end;
			text-align: left;
			line-height: 1.2em;
			font-weight: 300;
			color: #444;
		}
		
		.art_01 a {
			display: block;
			font-size: 1.4em;
			font-weight: 600;
			padding: 0.2em 1.7em 0.2em 1.6em;
			border: 1px solid #005ea3;
			max-width: fit-content;
			text-transform: uppercase;
			letter-spacing: 0.06em;
			margin-top: 2em;
			background-color: #005ea3;
		}
		
		.art_01 a:hover{
			display: block;
			font-size: 1.4em;
			font-weight: 600;
			padding: 0.2em 1.7em 0.2em 1.6em;
			border: 1px solid #005ea3;
			max-width: fit-content;
			text-transform: uppercase;
			letter-spacing: 0.06em;
			background-color:#005ea3;
			color:#c8c8c8;
		}
		
		
		/*ART_02*/
		
		.art_02{
			display: grid;
			grid-template-columns: 1fr 1fr 1fr;
			grid-template-rows: 1fr auto;
			column-gap: 2em;
			padding: 5em 12em;
			grid-template-areas:
				"box-1 box-3 box-5"
				"box-2 box-4 box-6";				
			align-items: start;
		}
		.art_02 .box{
			padding: 0 2.5em;
		}
		
		.art_02 .box:nth-child(3){
			border-left:1px solid rgba(255,255,255,0.2);
			border-right:1px solid rgba(255,255,255,0.2);
		}
		
		.art_02 a{
			font-size: 1.8em;
			font-weight: 500;
			font-family: "GFS Didot", serif;
			color: #005ea3;
			border-top: 1px solid rgba(209, 196, 143, 0.4);
			margin-top: 1em;
		}
		
		.art_02 a:hover{
			color: #614e00;
		}
		
		
		/*ART_03*/
		
		.art_03{
			display: grid;
			grid-template-columns:2fr 1fr;
			grid-template-rows: 1fr auto;
			column-gap: 2em;
			padding: 8em 14em;
			grid-template-areas:
				"box-1 box-2";				
			align-items: start;
			background-color: #222;
		}
		
		.art_03 h3{
			font-family: 'Inter', serif;
			font-size: 4em;
			line-height: 1em;
			font-weight: 200;
			margin-bottom:0.8em;
			color: #e9e9e9;
		}
		
		.art_03 p{
			font-family: 'Inter', serif;
			font-size: 1.4em;
			color:#e9e9e9;
		}
		
		.art_03 span{
			color: #0069b7;
		}
		
		.art_03 i{
			font-weight:500;
		}
		
		.art_03 a{
			font-size: 1.8em;
			font-weight: 500;
			font-family: "GFS Didot", serif;
			color: #6ac0ff;
			margin-top:1em;
			margin-bottom:8em:
		}
		
		.art_03 a:hover{
			color: #fff;
		}
		
		footer{
			padding:1em 0 1em 4em;
			border-top: 1px solid rgba(209, 196, 143, 0.4);
			color:#444;
		}
		
		
		
		/* SECCIONES INTERNAS ----------------------------------------*/
		
		/* ART INTERNO 01*/
		.artInt_01{
			display: grid;
			grid-template-columns: 1fr 1fr;
			grid-template-rows: 1fr auto;
			column-gap: 6em;
			padding: 5em 14em;
			grid-template-areas:
				"box-1 box-1"
				"box-2 box-3";
			align-items: start;
			padding-top:8em;
			padding-bottom:8em;
			border-bottom: 1px solid rgba(209, 196, 143, 0.4);
		}
		
		.artInt_01 figure{
			display: block;
			background-image: url(../images/art_01.webp);
			background-position: center 80%;
			background-size: cover;
			border-radius: 0.5em;
			height: 30em;
			margin-top: 2em;
		}
				
		
		.bajada{
			font-size:1.5em;
			line-height:1.4em;
			color:#222;
			margin-top:1.2em;
			padding-bottom:1.2em;
		}	
		
		.textoCorrido{
			font-size:1.1em;
			color:#222;
			margin-bottom:2em;
		}
		
		.artInt_02{
			display: grid;
			grid-template-columns: 1fr;
			grid-template-rows: 1fr auto;
			column-gap: 6em;
			padding: 5em 24em;
			grid-template-areas:
				"box-1"
				"box-1";
			align-items: start;
			padding-top:8em;
			padding-bottom:8em;
			border-bottom: 1px solid rgba(209, 196, 143, 0.4);
			background-color:#222;
		}
		
		.artInt_02 h3, .artInt_02 em,.artInt_02 p{
			color:#fff;
		}
		
		.artInt_03{
			display: grid;
			grid-template-columns: 1fr 1fr 1fr;
			grid-template-rows: 1fr;
			column-gap: 4em;
			padding: 5em 10em;
			grid-template-areas:
				"box-1 box-2 box-3";
			align-items: start;
			padding-top:8em;
			padding-bottom:8em;
			border-bottom: 1px solid rgba(209, 196, 143, 0.4);
		}
		
		.boxMiddleBorder{
			border-left: 1px solid rgba(209, 196, 143, 0.4);
			border-right: 1px solid rgba(209, 196, 143, 0.4);
			padding:0 2em;
		}


        /* Section Spacing */
        section {
            padding: 40px 0;
        }
        

        /* --- CSS GRID LAYOUTS --- */



        /* Responsive Adjustments */
		@media (max-width: 1366px) {
		
		.hero,.art_01,.art_02,.art_03{
				padding: 4em 5em;
			}
		.hero .box p {
			font-size: 1em;
		}
			
		
        @media (max-width: 768px) {
			
            /* Toggle Navigation */
			header {
				background-color: #111;
			}
			
            .hamburger {
                display: block;
                z-index: 100;
            }
			
			.nav-links {
				display: none;
			}

            .nav-links_mobile {
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: #111;
                flex-direction: column;
                gap: 0;
                border-bottom: 1px solid var(--border-color);
                
                /* Hidden state */
                max-height: 0;
                overflow: hidden;
                opacity: 0;
                transition: max-height 0.4s ease, opacity 0.4s ease;
            }

            .nav-links_mobile.active {
                max-height: 100vh; /* Arbitrary height to allow slide down */
                opacity: 1;
            }

            .nav-links_mobile a {
                padding: 15px 2em;
				width: 100%;
				font-size: 1.4em;
				text-align: left;
                border-top: 1px solid var(--border-color);
            }
			
			.nav-links_mobile a:last-child {
                padding-bottom: 100%;
            }

            /* Hamburger Animation */
            .hamburger.active .hamburger-line:nth-child(1) {
                transform: translateY(7px) rotate(45deg);
            }
            .hamburger.active .hamburger-line:nth-child(2) {
                opacity: 0;
            }
            .hamburger.active .hamburger-line:nth-child(3) {
                transform: translateY(-7px) rotate(-45deg);
            }

            /* Adjust Grids for Mobile */
			
			.hero{
				background-image: url("../images/hero_02.webp");
				background-position-y:bottom;
				background-size:cover;
				height: 50em;
				display: grid;
				grid-template-columns: 1fr;
				grid-template-rows: 3fr 1fr 1fr;
				column-gap: 1em;
				padding: 10em 1.4em;
				grid-template-areas:
					"box-2"
					"box-3"
					"box-5";
			}
			
			.hero .box h2 {
				font-size: 2.2em;
				align-self: end;
			}
			
			.hero span{
				display: none;
			}
			
			.hero .box em {
				font-size: 1.8em;
				align-self: start;
				margin-top: 1em;
			}
			
			.hero .box p {
				font-size: 1em;
				align-self: end;
				text-align: left;
				margin-top: 2em;
			}
			
		.art_01{
			display: grid;
			grid-template-columns: 1fr;
			grid-template-rows: 1fr auto;
			column-gap: 6em;
			padding: 5em 1em;
			grid-template-areas:
				"box-1"
				"box-3"
				"box-5"
				"box-2"
				"box-4"
				"box-6";
			align-items: start;
			border: none;
		}
		
		.subTitle_02 {
			margin-top: 1em;
		}
		
		
		.art_01 a {
			margin: 2em 0;
		}	
		
		.art_02{
			display: grid;
			grid-template-columns: 1fr;
			grid-template-rows: 1fr auto;
			column-gap: 6em;
			padding: 5em 1em;
			grid-template-areas:
				"box-1"
				"box-2"
				"box-3"
				"box-4"
				"box-5"
				"box-6";
			align-items: start;
		}
		
		.art_02 .box{
			padding:0;
			margin-bottom:2em;
		}
		
		.art_02 h3{
			border-top:1px solid rgba(255,255,255,0.3);
			padding-top:1em;
		}
		
		.art_02 .box:nth-child(3){
			border-left:none;
			border-right:none;

		}
		
		.art_02 a {
			border-top: none;
		}
			
			
		.art_03 {
			grid-template-columns:1fr;
			grid-template-rows: 1fr auto;
			column-gap: 2em;
			padding: 5em 1em;
			grid-template-areas:
				"box-1";
			border-top:1px solid rgba(255,255,255,0.3);				
		}	
		
		.art_03 h3{
			font-size: 3em;
		}
		
		footer{
			padding:1em 0 1em 1em;
			border-top: 1px solid rgba(209, 196, 143, 0.4);
		}
		
		
		/*SECCIONES INTERNAS --------------------------------------*/
		
		.seccionInterna{
			padding-top: 10em;
		}
		
        .artInt_01 {
            display: grid;
            grid-template-columns: 1fr;
            grid-template-rows: 1fr auto;
            column-gap: 6em;
            padding: 2em 1em;
            grid-template-areas:
				"box-1"
				"box-2"
				"box-3";
            align-items: start;
            padding-top: 4em;
            padding-bottom: 12em;
            border-bottom: 1px solid rgba(209, 196, 143, 0.4);
        }
		
		.artInt_02{
			display: grid;
			grid-template-columns: 1fr;
			grid-template-rows: 1fr auto;
			column-gap: 6em;
			padding: 2em 1em;
			grid-template-areas:
				"box-1"
				"box-1";
			align-items: start;
			padding-top:8em;
			padding-bottom:8em;
			border-bottom: 1px solid rgba(209, 196, 143, 0.4);
		}
		
		.artInt_03{
			display: grid;
			grid-template-columns: 1fr;
			grid-template-rows: 1fr auto;
			column-gap: 4em;
			padding: 2em 1em;
			grid-template-areas:
				"box-1"
				"box-2"
				"box-3";
			align-items: start;
			padding-top:8em;
			padding-bottom:8em;
			border-bottom: 1px solid rgba(209, 196, 143, 0.4);
		}
		
		.boxMiddleBorder{
			border-left: 1px solid rgba(209, 196, 143, 0);
			border-right: 1px solid rgba(209, 196, 143, 0);
			padding:0;
		}

		.textoCorrido{
			font-size:1.2em;
			color:#222;
			margin-bottom:4em;
		}
			

        }