		/* 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: calc(var(--vh, 1vh) * 96); /* UPDATED: use JS-driven vh */
			min-height: 350px;
			overflow: hidden;
			margin-left: calc(-50vw + 50%);
			left: 0;
			right: 0;
		}


		a.link {
				color:#fff;
			}
        
        .upper-third-content {
            position: absolute;
            bottom: 60%;
            left: 5%;
            z-index: 2;
        }

        .lower-third-content {
            position: absolute;
            bottom: 10%;
            left: 5%;
            z-index: 2;
        }

		.cta-bottom {
			position: absolute;
			bottom: 3%;
			left: 5%;
			z-index: 2;
			letter-spacing: 2px;
			cursor: pointer;
		}
        
        .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;
        }

		.logo-svg-wrapper {
		  max-width: 80vw;
		  max-height: 50vh;
		}

		/* The root SVG from your file (it’s id="Layer_1" in your export) */
		#Layer_1 {
		  width: 100%;
		  height: auto;
		  display: block;
		}

		/* Optional: force all paths to render white; remove if your SVG already has correct fills */
		#Layer_1 path {
		  fill: #ffffff;
		}

		/* Start states for animation */
		#DREAMWELL {
		  opacity: 0;
		}

		#EDIA {
		  opacity: 0;
		}

		#M {
		  opacity: 0;
		  transform: translateY(-80px);  /* start slightly above */
		  transition: transform 0.6s ease-out, opacity 0.3s ease-out;
		}

		/* When JS adds .drop, the M falls into place and fades in */
		#M.drop {
		  opacity: 1;
		  transform: translateY(0);
		}

		.lower-third-content h2 {
            font-size: 2rem;
            font-weight: 400;
            line-height: 1.15;
            margin-bottom: 5px;
        }

		.cta-bottom h3 {
            font-size: 1rem;
            font-weight: 200;
            line-height: 1.15;
            margin-bottom: 5px;
        }
        
        .menu-btn {
			display: inline-block;
            position: absolute;
            top: 75px;
            right: 60px;
            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;
		}

        
        /* Contact Section */
        .contact-section {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            padding: 50px 5%;
            gap: 20px;
        }

		.contact-section.contact-hidden {
			display: none;
		}
        
        .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;
        }
        
        
        /* 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;
        }

		body.contact-open footer {
			position: relative;
			bottom: auto;
		}
        
        /* 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%;
            margin: 0 auto;
            text-align: left;
			margin-left: 132px !important;
			margin-right: 132px !important;
        }
		
		/* 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;
		}
		
		.typewriter-text {
		  display: inline-block;
		  position: relative;
		  white-space: pre-line; /* needed for DREAMWELL\nMEDIA line break */
		  overflow: visible;
		  letter-spacing: 2px;
		}

		/* Only elements with .caret show the blinking cursor */
		.typewriter-text.caret::after {
		  content: "";
		  display: inline-block;
		  width: 0.02em;
		  height: 1em;          /* roughly one line high */
		  background-color: #fff;
		  margin-left: 3px;
		  vertical-align: bottom;
		  animation: caret-blink 1s steps(1) infinite;
		}

		@keyframes caret-blink {
		  50% { opacity: 0; }
		}

		/* Let the long lower-third line wrap on small screens */
		@media (max-width: 768px) {
			.lower-third-content .typewriter-text {
				white-space: normal;
			}
		}
		
        @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;
		}

		.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;
		  }
		}

		.project-labels {
		  display: flex;
		  flex-wrap: wrap;
		  gap: 18px;
		  margin: 20px 0 0 0;
		  /* Ensures row layout on desktop, stacks/wraps on small screens */
		}

		.project-label {
		  display: inline-block;
		  background: transparent;
		  color: #fff;
		  font-size: 0.9rem;
		  font-weight: 300;
		  padding: 10px 25px;
		  border-radius: 60px;
		  letter-spacing: 0.01em;
		  box-shadow: none;
		  white-space: nowrap;
		  font-family: inherit;
		  border: 1px solid #fff;   /* Thin white border */
		  transition: background 0.2s, color 0.2s, border 0.2s;
		}

		.project-label:not(:last-child) {
		  margin-right: 0; /* spacing handled by .project-labels gap */
		}

		@media (max-width: 800px) {
		  .project-labels {
			gap: 12px;
			justify-content: flex-start;
		  }
		  .project-label {
			font-size: 0.8rem;
			padding: 10px 20px;
		  }
		}

		@media (max-width: 540px) {
		  .project-labels {
			gap: 8px;
			flex-direction: column;
			align-items: flex-start;
		  }
		  .project-label {
			font-size: 0.8rem;
			padding: 10px 20px;
			width: auto;
			min-width: 0;
		  }
		}



        /* 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%;
            }
			
			.project-info-section {
				margin-left: 2px !important;
				margin-right: 0px !important;
			}
			
            .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;
			}

			.lower-third-content {
				position: absolute;
            	bottom: 10%;
			}
			
			.lower-third-content h2 {
				font-size: 1.6rem;
			}
			
			.cta-bottom {
				position: absolute;
            	bottom: 4%;
			}
			
			.cta-bottom h3 {
				font-size: 1;
			}
		}

		@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;
			}
			
			.project-info-section {
				margin-left: 2px !important;
				margin-right: 0px !important;
			}
			
			.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;
		  	}
			
			.lower-third-content {
				position: absolute;
            	bottom: 10%;
			}
			
			.lower-third-content h2 {
				font-size: 1.2rem;
			}
			
			.cta-bottom {
				position: absolute;
            	bottom: 4%;
			}
			
			.cta-bottom h3 {
				font-size: 1;
			}
		}