        :root {
            /* DEEP DENIM BLUE PALETTE */
            --bg-color: #0c1a2d;           /* Deep Indigo Denim */
            --surface-color: #162e4a;      /* Dark Denim Blue */
            --surface-color-light: #1f3c5f;/* Medium Denim Blue */
/*            --primary-color: #66ffff;   */   /* Accents Blue */
            --primary-color: #60cafc;      /* Accents Blue */
/*            --primary-color: #e6c556;   */   /* "Gold Stitching" Yellow */
/*            --primary-color: #f5a623;   */   /* "Gold Stitching" Amber */
            --primary-hover: #40aaf0;
/*            --primary-hover: #21ffff;  */
/*            --primary-hover: #3c82ec;  */
/*            --primary-hover: #e0961f;  */
            --text-main: #dbe3eb;          /* Pale Faded Denim */
            --text-muted: #8ca3b8;         /* Muted Blue-Grey */
            --white: #ffffff;
            --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--bg-color);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
        }

        html {
            scroll-behavior: smooth;
        }

        h1, h2, h3, h4 {
            color: var(--white);
            margin-bottom: 1rem;
        }

        a {
            text-decoration: none;
            color: var(--primary-color);
            transition: color 0.3s;
        }

        a:hover {
            color: var(--primary-hover);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Navbar */
        nav {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(12, 26, 45, 0.95); /* Deep Indigo variant */
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--surface-color-light);
            padding: 1rem 0;
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--white);
            letter-spacing: 1px;
            z-index: 1001;
            text-decoration: none;
        }

        .logo:hover { color: var(--white); }

        .logo span {
            color: var(--primary-color);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--text-main);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        /* Hamburger Menu Icon */
        .hamburger {
            display: none;
            font-size: 1.5rem;
            color: var(--white);
            cursor: pointer;
            z-index: 1001;
        }

        /* Hero Section */
        .hero {
            position: relative;
            padding: 12rem 0 8rem; /* Added padding for headshot layout */
            /* Linear-gradient overlays using deep bluer tones */
            background: linear-gradient(rgba(12, 26, 45, 0.7), rgba(12, 26, 45, 0.9)), url('LP junior.webp') center/cover no-repeat;
            background-attachment: fixed;
        }

        /* Dynamic Darkening Overlay */
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--bg-color); /* Fades into the deep indigo denim */
            opacity: var(--scroll-darken, 0);
            z-index: 1;
            pointer-events: none;
        }

        /* New Grid Wrapper inside Hero Container */
        .hero .container.grid-wrapper {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 3fr 1fr; /* Headshot right, content left */
            gap: 4rem;
            align-items: center;
        }

        .hero-content {
            text-align: center;
        }

        .hero-headshot-wrapper {
            display: flex;
            justify-content: center;
            justify-self: left; /* Move it nearer the content */
            align-self: flex-start; /* and at the top */
            align-items: flex-start;
        }

        .hero-headshot-img {
            width: 200px;
            height: 200px;
            object-fit: cover;
            border-radius: 50%; /* Modern circular headshot */
            border: 4px solid var(--primary-color); /* Blue border */
            box-shadow: 0 10px 40px rgba(0,0,0,0.6); /* Adds depth */
        }

        .hero h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            margin: 0 auto 1.5rem;
/*            margin-bottom: 1.5rem; */
            /* Removed margin: 0 auto from previous center layout */
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--text-main);
            margin: 0 auto 2.5rem;
/*            margin-bottom: 2.5rem; */
            max-width: 600px;
            /* Removed margin: 0 auto from previous center layout */
        }

        .hero-btns {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }

        .btn {
            display: inline-block;
            background: var(--primary-color);
            color: var(--bg-color);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: transform 0.3s, background 0.3s;
            text-align: center;
        }

        .btn:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
            color: var(--bg-color);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            /* Removed previous margin-left */
        }

        .btn-outline:hover {
            background: var(--primary-color);
            color: var(--bg-color);
        }

        /* Section Formatting */
        section {
            padding: 6rem 0;
            border-bottom: 1px solid var(--surface-color-light);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--white);
        }

        .section-title span {
            color: var(--primary-color);
        }

        /* How it works */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .step-card {
            background: var(--surface-color);
            padding: 2.5rem;
            border-radius: 12px;
            text-align: center;
            transition: transform 0.3s, background 0.3s;
            border: 1px solid rgba(255,255,255,0.05);
        }

        .step-card:hover {
            transform: translateY(-5px);
            background: var(--surface-color-light);
        }

        .step-number {
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: var(--bg-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 1.5rem;
        }

        /* Services */
        .services-wrapper {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .service-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 1.5rem;
            background: var(--bg-color);
            margin-bottom: 1rem;
            border-radius: 8px;
            border-left: 4px solid var(--primary-color);
        }

        .service-info h3 { 
            margin-bottom: 0.25rem;
        	font-size: 1.2rem; 
        }
        
        .service-info p { 
        	color: var(--text-muted); 
        	font-size: 0.9rem; 
        }
        
        .service-price { 
            font-size: 1.25rem;
        	color: var(--primary-color); 
        	font-weight: bold; 
        	margin-left: 1rem; 
        }

        /* Guarantee Box */
        .guarantee-box {
            background: linear-gradient(135deg, var(--surface-color), #2a4c78); /* Bluer variant gradient */
            padding: 3rem;
            border-radius: 12px;
            text-align: center;
            margin-top: 4rem;
            border: 1px solid var(--primary-color);
        }

        .guarantee-box i { 
        	font-size: 3rem; 
        	color: var(--primary-color); 
        	margin-bottom: 1rem; 
        }
        
        .guarantee-list { 
        	text-align: left; 
        	max-width: 600px; 
        	margin: 2rem auto 0; 
        	list-style: none; 
        }
        
        .guarantee-list li { 
        	margin-bottom: 1rem; 
        	position: relative; 
        	padding-left: 2rem; 
        }
        
        .guarantee-list li i { 
        	position: absolute; 
        	left: 0; 
        	top: 4px; 
        	font-size: 1.2rem; 
        	color: var(--primary-color); 
        }

        /* About & Guide Grid */
        .split-grid { 
        	display: grid; 
        	grid-template-columns: 1fr 1fr;
/*        	grid-template-columns: 1fr; max-width: 750px; */
        	gap: 4rem; 
        	align-items: center; 
        }
        
        .split-grid i { 
        	color: var(--primary-color); 
        }
        
        .about-image { 
        	width: 100%; 
        	border-radius: 12px; 
/*        	box-shadow: 0 20px 40px rgba(0,0,0,0.5); */
        }

        .about-headshot-wrapper {
            float: right;
            padding: 0.5rem 2rem;
        }

        .about-headshot-img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 50%; /* Modern circular headshot */
            border: 4px solid var(--primary-color); /* Blue border */
            box-shadow: 0 10px 40px rgba(0,0,0,0.6); /* Adds depth */
        }

/* =========================================
   Set-up Guide Section
========================================= */
        .guide-intro { 
			text-align: center; 
			max-width: 850px; 
			margin: 0 auto 3rem; 
			font-size: 1.1em;
        }

        .guide-section { 
        	background: var(--surface-color-light); 
        	padding: 3rem; 
        	border-radius: 12px; 
        }
        
        .guide-section h3 { 
        	color: var(--primary-color); 
        	margin-top: 2rem; 
        }
        
        .guide-section strong {
        	color: var(--primary-color); 
        } 
        
/* =========================================
   Reviews Carousel
========================================= */
.reviews-section { 
  padding: 20px 20px 80px; 
  text-align: center; 
}

.reviews-section h2 { 
  font-size: 2rem; 
  color: var(--primary-color);
}

.carousel-container { 
  max-width: 800px; 
  margin: 0 auto; 
  overflow: hidden; 
  position: relative; 
  background: var(--surface-color-light); 
  border-radius: 8px; 
  border: 1px solid var(--bg-color);
}

.carousel-track { 
  display: flex; 
  transition: transform 0.6s ease-in-out; 
}

.review-card { 
  min-width: 100%; 
  padding: 20px 30px; 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center; 
}

.stars { 
  color: var(--primary-color); 
  font-size: 1.4rem; 
  margin-bottom: 20px; 
  letter-spacing: 2px; 
}

.review-text { 
  font-size: 1.2rem; 
  font-style: italic; 
  margin-bottom: 25px; 
  max-width: 600px; 
  line-height: 1.5; 
  color: var(--text-color); 
}

.review-author { 
  font-weight: 600; 
  color: var(--text-color); 
  font-size: 0.95rem; 
  text-transform: uppercase; 
  letter-spacing: 1px; 
}

/* =========================================
   Footer
========================================= */
        footer {
            background: #060e18; /* Even deeper denim indigo for footer */
            padding: 4rem 0 2rem;
            text-align: center;
        }

        .footer-grid { 
        	display: grid; 
        	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
        	gap: 2rem; 
        	text-align: left; 
        	margin-bottom: 3rem; 
        }
        
        .footer-col h3 { 
        	color: var(--primary-color); 
        	margin-bottom: 1.5rem; 
        }
        
        .footer-col i { 
        	color: var(--primary-color); 
        }
        
        .footer-col p, .footer-col a { 
        	color: var(--white); 
        	margin-bottom: 0.75rem; 
        	display: block; 
        }
        
        .footer-bottom { 
        	padding-top: 2rem; 
        	border-top: 1px solid var(--surface-color-light); 
        	color: var(--text-muted); 
        	font-size: 0.9rem; 
        }
 
        ul {
			list-style-position: inside;
		}

        /* =========================================
           BEFORE-AND-AFTER SLIDER STYLES
           ========================================= */
        .ba-wrapper {
            max-width: 800px; /* Limits size on large screens */
            margin: 0 auto; /* Centers the slider */
            position: relative;
            z-index: 10;
        }

        .ba-container {
            width: 100%;
            aspect-ratio: 16 / 9; /* Modern responsive aspect ratio */
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
            border: 2px solid var(--primary-color); /* The blue border */
            cursor: ew-resize; /* Indicates interactivity on hover */
        }

        .ba-image {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            object-fit: cover; /* Ensures images fill container without distortion */
            pointer-events: none; /* Prevents dragging the image itself */
        }

        /* The 'After' image is layered on top and clipped dynamically */
        .ba-image-after {
            z-index: 2;
            clip-path: inset(0 50% 0 0); /* Initial split 50/50 */
        }

        .ba-image-before {
            z-index: 1;
        }

        /* The central vertical draggable line */
        .ba-handle {
            position: absolute;
            top: 0;
            left: 50%; /* Initial split 50/50 */
            width: 2px; /* Line thickness */
            height: 100%;
            background: var(--white);
            z-index: 3;
            transform: translateX(-50%); /* Keeps line centered on its left property */
            box-shadow: 0 0 10px rgba(0,0,0,0.8);
        }

        /* The circle in the middle of the line */
        .ba-handle::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background: var(--white);
            border: 4px solid var(--primary-color); /* Blue border on the circle */
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 4;
        }

        /* Arrow icons inside the circle */
        .ba-handle-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: var(--primary-color); /* Blue arrows */
            font-size: 1.5rem;
            z-index: 5;
            pointer-events: none;
        }

/* =========================================
   WORKSHOP GALLERY SECTION
   ========================================= */
.workshop-gallery-section {
    padding: 40px;  
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--surface-color-light);
}

.gallery-wrapper {
    position: relative;
    width: 100%;
/*    height: 80vh;  Adjusts dynamically to screen height */
    min-height: 400px;
    max-height: 700px;
    overflow: hidden;
    background-color: #000; /* Dark background while images load */
}

#gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images fill the space without stretching */
    transition: opacity 0.3s ease-in-out;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(12, 26, 45, 0.75); /* Matches your deep denim palette */
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.gallery-btn:hover {
    background: var(--primary-color);
    color: var(--bg-color);
}

.gallery-btn.prev {
    left: 20px;
}

.gallery-btn.next {
    right: 20px;
}

/* Mobile Adjustments for Gallery */
@media (max-width: 768px) {
    .gallery-wrapper {
        height: 40vh;
        min-height: 300px;
    }
    .gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .gallery-btn.prev {
        left: 10px;
    }
    .gallery-btn.next {
        right: 10px;
    }
}

        /* =========================================
           MOBILE FIXES
           ========================================= */
        /* for aspect-ratio */
        @media (max-width: 480px) {
            .ba-container { aspect-ratio: 4 / 3; } /* Squares up slightly on very small screens */
            .ba-handle::after { width: 40px; height: 40px; }
            .ba-handle-icon { font-size: 1.2rem; }
        }

        /* Steps grid for iPad landscape */
        @media (max-width: 1028px) {
            .steps-grid, .footer-grid {
                grid-template-columns: 1fr; /* Stack vertically */
                text-align: center;
                gap: 2rem;
            }
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .hero { padding: 8rem 0 6rem; }
            .hero .container.grid-wrapper {
                grid-template-columns: 1fr; /* Stack vertically */
                text-align: center;
                gap: 2rem;
            }

            .hero-content {
                order: 2; /* Text goes below headshot */
                text-align: center;
            }

            .hero-headshot-wrapper {
                order: 1; /* Headshot goes on top */
                justify-self: center; /* Put it back in the middle */
            }

            .hero-headshot-img {
                width: 200px;
                height: 200px;
            }

            .hero h1 { 
            	font-size: 2.5rem; 
            	margin: 0 auto 1.5rem; 
            }
            
            .hero p { 
            	margin: 0 auto 2.5rem; 
            }
            
            .hero-btns {
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .btn { 
            	display: block; 
            	margin: 0 auto; 
            	text-align: center; 
            }
            
            .btn-outline { 
            	margin: 0 auto; 
            }

            .split-grid { 
            	grid-template-columns: 1fr;
            }
            
            .hamburger { 
            	display: block; 
            }

            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(12, 26, 45, 0.98); /* Deep Indigo */
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                gap: 2rem;
                opacity: 0;
                transform: translateY(-20px);
                pointer-events: none;
                transition: 0.3s ease;
            }

            .nav-links.active { 
            	opacity: 1; 
            	transform: translateY(0); 
            	pointer-events: all; 
            }

	        .about-headshot-wrapper {
        	    float: none;
	        }
	        
        }

        /* iOS Fix */
        @media (hover: none) and (pointer: coarse), (max-width: 1024px) {
            .hero { 
            	background-attachment: scroll; 
            }
        }