		/* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica Neue', Arial, sans-serif;
        }
        
        body {
            background-color: #000;
            color: #fff;
            overflow-x: hidden;
        }
        
        /* Header Styles */
        header {
            position: relative;
            width: 100vw;
            height: 96vh;
            min-height: 350px;
            overflow: hidden;
            margin-left: calc(-50vw + 50%);
            left: 0;
            right: 0;
        }

		a.link {
				color:#fff;
			}
        
        .header-content {
            position: absolute;
            bottom: 10%;
            left: 5%;
            z-index: 2;
        }
        
        .logo {
            width: 150px;
            margin-bottom: 20px;
            cursor: pointer;
        }

        .logo-ipp {
            position: absolute;
            top: 30px;
            left: 30px;
            width: 150px;
            margin: 0;
            z-index: 50;
            cursor: pointer;
        }
        
        .header-content h1 {
            font-size: 1.5rem;
            font-weight: 300;
            line-height: 1.4;
            margin-bottom: 5px;
        }
        
        .menu-btn {
			display: inline-block;
            position: absolute;
            top: 30px;
            right: 30px;
            color: #fff;
            background: none;
            border: none;
            font-size: 1rem;
            cursor: pointer;
            z-index: 100;
        }
		
		.close-btn {
		  	display: none;
		}
        
        #bg-video {
			position: absolute;
			top: 50%;
			left: 50%;
			min-width: 100vw;
			min-height: 100vh;
			width: auto;
			height: auto;
			transform: translate(-50%, -50%);
			object-fit: cover;
			z-index: -1;
			pointer-events: none;
			background: #000; /* fallback */
			max-width: none;
			max-height: none;
        }
        
        .video-overlay {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background-color: rgba(0, 0, 0, 0.2);
			z-index: 1;
        }
        
		.video-controls {
			position: absolute;
			bottom: 20px;
			right: 20px;
			display: flex;
			gap: 0px;
			z-index: 2;
		}

		.video-controls button {
			background: rgba(0, 0, 0, 0);
			border: none;
			padding: 10px;
			cursor: pointer;
			display: flex;
			align-items: center;
			justify-content: center;
		}

		.video-controls svg {
		  pointer-events: none;
		}

        
        /* Menu Overlay */
		.menu-overlay {
			position: fixed;
			top: 0;
			left: 0;
			width: 100vw;
			height: 100vh;
			background-color: rgba(0, 0, 0, 0.9);
			z-index: 100;
			display: none;
			flex-direction: column;
			align-items: center;
			justify-content: center;
			z-index: 9999;
		}

		.menu-overlay.active {
			display: flex;
		}

		.menu-overlay .close-btn {
			position: absolute;
			top: 30px;
			right: 30px;
			color: #fff;
			background: none;
			border: none;
			font-size: 2rem;
			cursor: pointer;
			z-index: 101;
		}
		.menu-overlay nav ul {
			list-style: none;
			text-align: center;
			padding: 0;
		}
		.menu-overlay nav ul li {
			margin: 20px 0;
		}
		.menu-overlay nav ul li a {
			color: #fff;
			text-decoration: none;
			font-size: 2rem;
			font-weight: 600;
			text-transform: uppercase;
			letter-spacing: 4px;
			transition: color 0.3s;
		}
		.menu-overlay nav ul li a:hover {
			color: #ccc;
		}
		
		.menu-controls {
			position: absolute;
			top: 0;
			right: 0;
			z-index: 200;
		}

		/* Hide menu button when overlay is active */
		.menu-overlay.active ~ header .menu-controls .menu-btn {
			display: none;
		}

		/* Show close button when overlay is active */
		.menu-overlay .close-btn {
			display: none; /* Hide by default */
		}

		.menu-overlay.active .close-btn {
			display: block; /* Show when active */
		}

		.menu-overlay .close-btn {
			position: absolute;
			top: 30px;
			right: 30px;
			color: #fff;
			background: none;
			border: none;
			font-size: 1rem;
			cursor: pointer;
			z-index: 201;
		}
        
        /* Marquee Styles */
        .marquee-container {
            width: 100%;
            overflow: hidden;
            background-color: #000;
            padding: 10px 0;
            border-top: 1px solid #333;
            border-bottom: 1px solid #333;
			z-index: 300;
    		position: relative;
        }
		
		.top-marquee {
			position: sticky;
			top: 0;
			left: 0;
			width: 100vw;
			z-index: 200;
			background-color: #000;
			border-top: none;
			border-bottom: 1px solid #333;
		}
        
        .marquee {
            white-space: nowrap;
            animation: marquee 30s linear infinite;
            display: inline-block;
			will-change: transform;
			backface-visibility: hidden;
        }
        
        .marquee span {
            display: inline-block;
            padding: 0 20px;
            font-size: 0.9rem;
            text-transform: uppercase;
        }
        
        @keyframes marquee {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
		/* About Section */
		.about-section {
			display: grid;
			grid-template-columns: 1fr 2fr;
			gap: 40px;
			align-items: center;
			padding: 60px 5% 40px 5%;
			background: none;
		}

		.about-img-col {
			width: 100%;
			display: flex;
			justify-content: center;
			align-items: center;
		}

		.about-img {
			width: 100%;
			max-width: 320px;
			border-radius: 18px;
			box-shadow: 0 4px 32px rgba(0,0,0,0.22);
			object-fit: cover;
		}

		.about-text-col {
			width: 100%;
		}

		.about-text-col h2 {
			font-size: 2rem;
			font-weight: 700;
			margin-bottom: 18px;
		}

		.about-text-col p {
			font-size: 1.05rem;
			color: #eee;
			margin-bottom: 18px;
			line-height: 1.6;
		}
		
        /* Portfolio Grid */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 10px;
            padding: 10px;
        }
        
        .portfolio-item {
            position: relative;
            height: 280px;
            overflow: hidden;
            background-color: #222;
        }
        
        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .portfolio-item:hover img {
            transform: none;
        }
        
		.portfolio-item .item-info {
			position: absolute;
			bottom: 0;
			left: 0;
			width: 100%;
			color: #fff;
			font-size: 1rem;
			z-index: 2;
			padding: 0;
			display: flex;
			align-items: flex-end;
		}

		.portfolio-item .item-info-bg {
			position: absolute;
			left: 0;
			bottom: 0;
			width: 100%;
			height: 56px;
			background: rgba(0,0,0,0.65);
			z-index: 1;
			pointer-events: none;
			transition: background 0.3s;
		}

		.portfolio-item .item-info-content {
			position: relative;
			z-index: 2;
			padding: 10px 18px 10px 18px;
			width: 100%;
			box-sizing: border-box;
			display: flex;
			flex-direction: column;
			gap: 2px;
		}

		.portfolio-item .item-title {
			font-size: 1rem;
			font-weight: 500;
			margin-bottom: 0;
		}

		.portfolio-item .item-year {
			font-size: 0.85rem;
			color: #ccc;
			margin-top: 0;
		}
        
        .load-more {
            display: block;
            width: 150px;
            margin: 30px auto;
            padding: 10px;
            background: none;
            border: 1px solid #fff;
			border-radius: 10px;
            color: #fff;
            text-align: center;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .load-more:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* Contact Section */
        .contact-section {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            padding: 50px 5%;
            gap: 20px;
        }
        
        .contact-form {
            grid-column: 1;
        }
        
        .contact-form h3, .follow-section h3, .visit-section h3 {
            margin-bottom: 20px;
            font-weight: 300;
        }
        
        .contact-form input, .contact-form textarea {
            width: 100%;
            background: none;
            border: none;
            border-bottom: 1px solid #333;
            padding: 10px 0;
            margin-bottom: 20px;
            color: #fff;
            outline: none;
        }
        
        .contact-form textarea {
            height: 100px;
            resize: none;
        }
        
        .contact-form button {
            background: none;
            border: 1px solid #fff;
			border-radius: 10px;
            color: #fff;
            padding: 10px 20px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .contact-form button:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .follow-section {
            grid-column: 2;
            text-align: right;
        }
        
        .visit-section {
            grid-column: 3;
            text-align: right;
        }
        
        .social-links a {
            display: inline-block;
			padding: 5px;
            color: #fff;
            text-decoration: none;
            margin-bottom: 10px;
            font-size: 0.9rem;
        }
        
        .social-links a:hover {
            text-decoration: underline;
        }
		
		.visit-links a {
            display: block;
            color: #fff;
            text-decoration: none;
            margin-bottom: 10px;
            font-size: 0.9rem;
        }
        
        .social-links a:hover {
            text-decoration: underline;
        }
        
        /* Interactive Gradient Area */
        .interactive-gradient {
            position: relative;
            width: 100vw;
            height: 80vh;
            min-height: 300px;
            background: linear-gradient(135deg, #4a00e0, #8e2de2);
            overflow: hidden;
            margin-left: calc(-50vw + 50%);
            left: 0;
            right: 0;
        }
        
        .gradient-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .gradient-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            font-size: 1.2rem;
            max-width: 80%;
            line-height: 1.6;
        }
        
        /* Footers */
        footer {
            padding: 20px 5%;
            text-align: center;
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.5);
            position: absolute;
            bottom: 0;
            width: 100%;
            z-index: 2;
        }
        
        /* Indiv Proj Page CSS Additions */
        .project-hero {
            min-height: 220px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            background: none;
            color: #fff;
            position: relative;
        }
		
        .project-title-area {
            margin-left: 0;
            margin-bottom: 0;
        }
		
        .project-title {
            font-size: 2rem;
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: 2px;
            text-shadow: 0 2px 12px rgba(0,0,0,0.20);
        }
		
        .project-meta {
            font-size: 1rem;
            color: #ccc;
            margin-top: 10px;
        }
		
        .project-media-section {
            width: 100%;
            padding: 48px 5% 24px 5%;
            display: flex;
            flex-wrap: wrap;
            gap: 38px;
            align-items: flex-start;
            justify-content: center;
            background: none;
            flex-direction: column;
        }
		
        .project-media {
            width: 100%;
            max-width: 650px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }
		
        .project-media img,
        .project-media video {
            width: 100%;
            max-width: 100%;
            border-radius: 18px;
            box-shadow: 0 4px 32px rgba(0,0,0,0.22);
            object-fit: cover;
            background: #111;
        }
		
        .project-info-section {
            padding: 75px 5% 36px 5%;
            max-width: 850px;
            margin: 0 auto;
            text-align: left;
        }
		
		/* Carousel styles */
		.media-carousel-container {
			position: relative;
			width: 100%;
			max-width: 100vw;
			margin: 0 auto;
		}
		
		.media-carousel {
			display: flex;
			overflow-x: auto;
			gap: 20px;
			padding-bottom: 12px;
			scroll-snap-type: x mandatory;
			max-width: 100vw;
			margin: 36px auto 0 auto;
			position: relative;
		}
		
		.media-carousel .carousel-item {
			aspect-ratio: 16 / 9;
			width: 100%;
			max-width: 650px;
			flex: 0 0 80vw;   /* or adjust for your layout */
			display: flex;
			align-items: center;
			justify-content: center;
			overflow: hidden;
			background: #111;
			box-shadow: 0 4px 32px rgba(0,0,0,0.22);
			margin: 0 10px;
			position: relative;
		}

		.media-carousel img,
		.media-carousel video {
			width: 100%;
			height: 100%;
			object-fit: cover;   /* Fill the 16:9 box, cropping if needed */
			aspect-ratio: 16 / 9;
			display: block;
		}
		
 		/* Interactive text area alt options */
		.interactive-text-area {
			font-size: 1rem;
			color: #fff;
			padding: 38px 4%;
			letter-spacing: 2px;
			background: linear-gradient(270deg, #848484, #4e4e4e, #848484, #4e4e4e);
			background-size: 400% 400%;
			border-radius: 10px; /* sharp corners */
			margin: 44px auto 36px auto;
			max-width: 600px;
			transition: color 0.3s;
			cursor: pointer;
			box-shadow: 0 4px 32px rgba(0,0,0,0.10);
			text-align: center;
			animation: animatedGradient 6s ease-in-out infinite;
		}

		@keyframes animatedGradient {
			0% {
				background-position: 0% 50%;
			}
			50% {
				background-position: 100% 50%;
			}
			100% {
				background-position: 0% 50%;
			}
		}

		/* Animate new colors on hover, keep animating! */
		.interactive-text-area:hover {
			background: linear-gradient(270deg, #2c6f00, #42a301, #5dfa84, #3a7d23);
			background-size: 400% 400%;
			animation: animatedGradient 2.5s ease-in-out infinite; /* Faster on hover, optional */
			color: #fff;
		}
		
        .typewriter-text {
            display: inline-block;
            border-right: .09em solid #fff;
            white-space: nowrap;
            overflow: hidden;
            letter-spacing: 2px;
            animation: caret 1s steps(1) infinite;
        }
		
        @keyframes caret {
            50% { border-color: transparent; }
        }
		
        /* Emoji Rain style */
        .emoji-rain {
            pointer-events: none;
            position: absolute;
            left: 0; top: 0; width: 100%; height: 100%;
            z-index: 9999;
        }
		
		.project-nav {
			width: 100%;
			display: flex;
			justify-content: space-between;
			align-items: center;
			background: #000;
			padding: 46px 7% 28px 7%;
			margin: 0 auto;
			gap: 12vw;
			flex-wrap: wrap;
		}
		.project-nav a {
			font-size: 2.1rem;
			text-transform: uppercase;
			font-weight: 900;
			letter-spacing: 8px;
			color: #fff;
			text-decoration: none;
			transition: color 0.24s;
			flex: 1 1 180px;
			text-align: center;
			margin: 0 10px;
			min-width: 140px;
		}
		.project-nav a:hover {
			color: #9b9b9b;
		}

		/* GALLERY SECTION */
		.gallery-sections-container {
		  width: 100%;
		  background: #000;
		  padding: 40px 0 64px 0;
		  display: flex;
		  flex-direction: column;
		  gap: 56px;
		}

		.gallery-section {
		  width: 100%;
		  max-width: 1400px;
		  margin: 0 auto;
		  padding: 0 32px;
		}

		.gallery-section-title {
		  font-size: 2rem;
		  font-weight: 700;
		  color: #fff;
		  margin-bottom: 32px;
		  letter-spacing: 0.01em;
		}

		.gallery-grid {
		  display: grid;
		  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
		  gap: 16px;
		  padding: 8px;
		}

		.gallery-item {
		  background: #222; /* match .portfolio-item */
		  overflow: hidden;
		  position: relative;
		  width: 100%;
		  aspect-ratio: 1/1;   /* force square shape */
		  display: flex;
		  flex-direction: column;
		  justify-content: flex-end;
		  align-items: stretch;
		  cursor: pointer;
		  min-width: 0; /* for flex/grid shrinkage */
		}

		.gallery-item:hover {
		  background: #181818;
		  box-shadow: 0 8px 32px 0 rgba(20,24,40,0.21);
		}

		.gallery-item img {
		  width: 100%;
		  height: 100%;
		  object-fit: cover; /* fill, crop as needed */
		  border-radius: 0;
		  background: #222;
		  display: block;
		}

		.gallery-caption {
		  position: absolute;
		  left: 0; right: 0; bottom: 0;
		  width: 100%;
		  background: rgba(0,0,0,0.65);
		  color: #fff;
		  padding: 14px 18px 10px 18px;
		  text-align: left;
		  box-sizing: border-box;
		  z-index: 2;
		  display: flex;
		  flex-direction: column;
		  gap: 2px;
		}

		.gallery-title {
		  font-size: 1rem;
		  font-weight: 500;
		}

		.gallery-year {
		  font-size: 0.88rem;
		  color: #ccc;
		}

		.gallery-overlay {
		  position: fixed;
		  top: 0;
		  left: 0;
		  width: 100vw;
		  height: 100vh;
		  z-index: 9999;
		  display: none;
		  align-items: center;
		  justify-content: center;
		  background: rgba(0,0,0,0.86); /* fallback if no .overlay-backdrop */
		}

		.gallery-overlay.show {
		  display: flex !important;
		}

		/* Overlay backdrop (if you use it, this just makes it clickable, optional) */
		.overlay-backdrop {
		  position: absolute;
		  inset: 0;
		  width: 100%;
		  height: 100%;
		  background: rgba(30, 35, 45, 0.86);
		  cursor: pointer;
		  z-index: 1;
		}

		/* Overlay content styles */
		.overlay-content {
		  position: relative;
		  color: #fff;
		  max-width: 90vw;
		  max-height: 90vh;
		  padding: 32px 32px 18px 32px;
		  z-index: 2;
		  display: flex;
		  flex-direction: column;
		  align-items: center;
		  border-radius: 0 !important; /* sharp corners */
		}

		.overlay-content img,
		.overlay-content video {
		  max-width: 90vw;
		  max-height: 65vh;
		  width: auto;
		  height: auto;
		  object-fit: contain;
		  display: block;
		  margin: 0 auto;
		  border-radius: 0 !important;
		  background: #222;
		}

		.overlay-caption {
		  margin-top: 18px;
		  text-align: center;
		  color: #fff;
		}

		@media (max-width: 700px) {
		  .gallery-grid {
			grid-template-columns: 1fr;
			gap: 14px 0;
		  }
		  .gallery-section-title {
			font-size: 1.45rem;
			margin-bottom: 20px;
		  }
		  .gallery-item {
			min-height: 64vw; /* still square, fits mobile */
			max-width: 98vw;
		  }
		}

		#welcome-overlay {
		  position: fixed;
		  top: 0; left: 0;
		  width: 100vw; height: 100vh;
		  background: rgba(0,0,0,0.85);
		  display: flex;
		  align-items: center;
		  justify-content: center;
		  z-index: 99999;
		  transition: opacity 0.3s;
		}

		.welcome-modal {
		  background: #181818;
		  color: #fff;
		  padding: 50px 50px 50px 50px;
		  max-width: 520px;
		  width: 90vw;
		  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
		  position: relative;
		  text-align: center;
		  font-size: 1rem;
		}

		#welcome-overlay button#close-welcome {
		  position: absolute;
		  top: 10px; right: 16px;
		  background: none;
		  border: none;
		  color: #fff;
		  font-size: 2rem;
		  cursor: pointer;
		  line-height: 1;
		  z-index: 10;
		}

		@media (max-width: 600px) {
		  .welcome-modal {
			padding: 20px 8vw 16px 8vw;
			font-size: 0.96rem;
			max-width: 96vw;
		  }
		  #welcome-overlay button#close-welcome {
			top: 2px; right: 6px;
			font-size: 1.7rem;
		  }
		}


        /* Responsive Styles */

		@media (max-width: 900px) {
			
			.about-section {
				grid-template-columns: 1fr;
				gap: 24px;
				padding: 40px 5% 24px 5%;
			}
			
			.about-img-col, .about-text-col {
				justify-content: center;
				align-items: center;
				text-align: center;
			}
			
			.about-img {
				max-width: 220px;
			}

			.gallery-grid {
				grid-template-columns: repeat(2, 1fr);
		  	}
		}
		
        @media (max-width: 768px) {
			header {
				height: 85vh;
       		}
			
			#bg-video {
				min-width: 100vw;
				min-height: 100vh;
				width: 100vw;
				height: 100vh;
			}
			
            .contact-section {
                grid-template-columns: 1fr;
            }
            
            .contact-form, .follow-section, .visit-section {
                grid-column: 1;
                margin-bottom: 30px;
            }
            
            .header-content h1 {
                font-size: 1.2rem;
            }
			
			.follow-section {
				text-align: left;
			}

			.visit-section {
				text-align: left;
			}
			
			.interactive-gradient {
				height: 80vh;
        	}
			
			.gradient-text {
				font-size: 1rem;
			}
			
			.logo-ipp {
                width: 110px;
                top: 18px;
                left: 16px;
            }
			
            .header-content {
                left: 3%;
                bottom: 6%;
            }
			
            .project-title {
                font-size: 1.5rem;
            }
			
			.project-meta {
				font-size: 0.9rem;
			}
			
            .project-media-section {
                padding: 18px 2% 12px 2%;
            }
			
            .interactive-text-area {
                font-size: 0.7rem;
                padding: 18px 3%;
				max-width: 350px;
            }
			
			.media-carousel .carousel-item {
				flex: 0 0 90vw;
				max-width: 96vw;
			}
			.media-carousel-instructions-text {
				font-size: 1.04rem;
				padding: 16px 24px;
				border-radius: 11px;
			}
        }

		@media (max-width: 600px) {
			.project-nav {
				flex-direction: row;
				justify-content: space-between;
				padding: 24px 3% 16px 3%;
				gap: 5vw;
			}
			.project-nav a {
				font-size: 1.3rem;
				min-width: 100px;
				letter-spacing: 4px;
				padding: 10px 0;
				margin: 0 2vw;
			}
			
			.gallery-grid {
				grid-template-columns: 1fr;
				gap: 14px 0;
		 	}
		  	.gallery-section-title {
				font-size: 1.45rem;
				margin-bottom: 20px;
		  	}
		  	.gallery-item {
				min-height: 64vw;
				max-width: 98vw;
		  	}
		}