:root {
		--site-width: 1200px;
		--gap:30px; /* Consistent space between slides */
		--bg-base: #e5e0d8;
		--text-main: #3d3a35;
		--accent-gold: #b5a48b;
		--bg-dark: #2c2a27;
		--text-gold: #b5a48b;
		--text-secondary: #99958e;
		--fs-solid: clamp(32px, 4.5vw, 68px);
		--fs-outline: clamp(24px, 2.8vw, 45px);
		--bg-black: #0a0a0a;
		--text-white: #ffffff;
		--text-muted: #a0a0a0;
	}

body{
	margin:0px;
	padding:0px;
	font-family: 'Inter', sans-serif;
	background:#e4e1de;
	background-image: url("../../images/natural-paper.png");
}
.site-line{
	max-width:1200px;
	margin:auto;
	clear:both;
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}
header.scrolled {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
}
.logo {
  font-size: 22px;
  font-weight: bold;
  margin-right: auto;
}
nav ul {
  list-style: none;
  display: flex;
  gap:55px;
  align-items: center;
  margin:0;
  padding:0;
}
nav a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  position: relative;
}
.has-submenu {
  position: relative;
}
.submenu {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 180px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.submenu li {
  padding: 10px 20px;
}
.submenu li a {
  color: #000;
  display: block;
}
.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.slideshow {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.slides {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.7s ease;
}
.slide {
  width: 100%;
  height: 100vh;
  flex-shrink: 0;
  position: relative; /* fix per-slide text positioning */
}
.slide video{
	width:100%;
	height:100vh;
	object-fit: cover;
}
.controls {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}
.btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 6px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}
.btn:hover { background: rgba(0,0,0,0.9); }

/* Right-side dots */
.dots {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 10;
}
/* Base dots */
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;   /* solid white */
  border: none;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}
.dot.active {
  background: transparent;
  border: 1px solid #fff;
}
.dot.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
@media (max-width: 768px) { .dots { display: none; } }
.dot-line{
  position: absolute;
  top: 50%;
  transform: translate(-50%,-50%);
  right: 0px;
  left: 50%;
  width: 100%;
}

/* Dark overlay on each slide */
.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2); /* weak black overlay */
  pointer-events: none; /* allow clicks to pass through */
  z-index: 1; /* under slide-text */
}

/* Ensure text stays above overlay */
.slide-text {
  position: absolute;
  left: 50%;
  bottom: 10rem;
  max-width: 1200px;
  padding: 0 1rem;
  color: white;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  width: 100%;
  transform: translateX(-50%);
  z-index: 2; /* above overlay */
}


.slide.active .slide-text {
  opacity: 1;
}
.slide-text h2{
	font-size:34px;
}
/* Letters animation */
.slide-text h2 span {
  display: inline-block;
  opacity: 0;
  transform: translateY(15px);
  animation: letterIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  margin-right: 0.05em; /* small spacing between letters */
}

/* smoother keyframes */
@keyframes letterIn {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  60% {
    opacity: 1;
    transform: translateY(-2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Paragraph fade */
.slide-text p {
  opacity: 0;
  transition: opacity 0.6s ease;
  max-width:600px;
}

.slide.active .slide-text p {
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
  .slide-text {
    bottom: 1.2rem;
    padding: 0 0.5rem;
  }
  .slide-text h2 {
    font-size: 2rem;
    line-height: 2rem;
  }
  .slide-text p {
    font-size: 0.95rem;
  }
}
/* Social icons wrapper aligned with max-width container */
.slideshow .social-icons-wrapper {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  max-width: 1200px;
  width: 100%;
  transform: translateX(-50%);
  display: flex;
  justify-content: flex-end; /* push icons to right */
  z-index: 15;
}

.slideshow .social-icons-wrapper .social-icons {
  display: flex;
  flex-direction: row; /* horizontal row */
  gap: 0.8rem;
}

.slideshow .social-icons-wrapper .social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid white; /* empty circle */
  color: white;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.slideshow .social-icons-wrapper .social-icons a:hover {
  transform: scale(1.2);
  background: rgba(255,255,255,0.1);
}

.slideshow .social-icons-wrapper .social-icons svg {
  width: 16px;
  height: 16px;
  fill: white;
}
.container-1200 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.two-col-section {
  padding: 6rem 0;
  color:#94897c;
}

.two-col {
  display: flex;
  align-items: flex-start; /* align both columns to top */
  gap: 4rem;
}


/* 40% IMAGE */
.col-left {
  width: 40%;
}

.col-left img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* 60% TEXT */
.col-right {
  width: 60%;
}

/* HEADING */
.section-heading {
  margin-bottom: 2rem;
}

.section-sup-title {
  display: block;
  margin-bottom: 60px; /* updated */
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.section-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

.section-main-title i {
  font-style: italic;
  font-weight: 500;
}

.col-right p {
  margin-top: 2rem;
  line-height: 1.7;
  font-size: 1rem;
  color: #444;
}

/* ===============================
   SCROLL REVEAL
================================ */

.reveal {
  overflow: hidden;
}

.reveal-line {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  will-change: transform, opacity;
}

/* Responsive */
@media (max-width: 992px) {
  .two-col {
    flex-direction: column;
    gap: 2rem;
  }

  .col-left,
  .col-right {
    width: 100%;
  }

  .section-main-title {
    font-size: 2rem;
  }
}
.inner-two-col {
  display: flex;
  align-items: flex-start; /* vertical align top */
  gap: 3rem;
  margin-top: 2rem;
}

/* 60% TEXT */
.inner-left {
  width: 60%;
}

.inner-left p {
  margin: 0;
  line-height: 1.7;
  font-size: 1rem;
  color: #444;
}

/* 40% IMAGE */
.inner-right {
  width: 40%;
}

.inner-right img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 75px; /* required */
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .inner-two-col {
    flex-direction: column;
  }

  .inner-left,
  .inner-right {
    width: 100%;
  }

  .inner-right img {
    margin-top: 30px;
  }
}
/* Base hidden state */
.reveal-image {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}

/* Visible state */
.reveal-image.active {
  opacity: 1;
  transform: translateY(0);
}
/* ===== Animated Noise Background ===== */
/* ===========================
   Services Section Styles
=========================== */

/* Container */
.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Section Head */
.services-container .section-head {
  text-align: center;
  position: relative;
  margin-bottom: 80px;
}

.services-container .section-subtitle {
  font-size: 16px;
  color: #94897c;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.services-container .section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
  color:#685c4e;
}

.services-container .section-backtitle {
  font-family: 'Pinyon Script', cursive;
  font-size: 120px;
  color: rgba(0,0,0,0.05);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* Section Icon */
.services-container .section-head .icon {
  display: inline-block;
  margin-top: 20px;
}

.services-container .section-head .icon svg {
  width: 40px;
  height: 40px;
  fill: #94897c;
}

/* Services Grid */
.services-container .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

/* Individual Service Box */
.services-container .service-box {
  background: #fff;
  padding: 30px 20px;
  text-align: center;
  border-radius: 2px; /* Sharp edges */
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative; /* needed for background SVG */

  /* Scroll reveal effect */
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: all 0.6s ease-out;
}

/* Background faint SVG inside each service */
.services-container .service-box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><circle cx="32" cy="32" r="30" fill="%23ff6f61"/></svg>') no-repeat center center;
  background-size: contain;
  opacity: 0.05; /* faint background */
  pointer-events: none;
  z-index: 0;
}

/* Box visible state (scroll reveal) */
.services-container .service-box.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Top-center icon & content above background */
.services-container .service-box svg,
.services-container .service-box .service-title,
.services-container .service-box .service-desc {
  position: relative;
  z-index: 1;
}

/* Box Icon */
.services-container .service-box svg {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  fill:#94897c;
}

/* Box Title */
.services-container .service-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Box Description */
.services-container .service-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
.header-footer {
	height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	font-size: 3rem;
	text-transform: uppercase;
	font-weight: 800;
}

.bg-first { background-color: #1a1a1a; }
.bg-last { background-color: #16a085; }

/* THE DYNAMIC HORIZONTAL SECTION */
.scroll-wrapper {
	overflow: hidden;
	background: transparent;
}

.scroll-content {
	display: flex;
	flex-wrap: nowrap;
	width: max-content; 
	height: 100vh;
	align-items: center;
	padding:0px 0px 0px calc((100vw - var(--site-width)) / 2);
	
}
/* Dynamic Items */
.item {
	height: 80vh;
	flex-shrink: 0; 
	display: inline-block;
	font-size: 2rem;
	font-weight: bold;
	border-radius: 15px;
	padding: 0 15px;
	color: #fff;
	/* Added to ensure children don't spill out of border-radius */
	overflow: hidden;
}
.scroll-content > .item:last-child{
	margin-right: var(--gap);
}

@media (max-width: 1240px) {
	.scroll-content { padding-left: 20px; }
}
/* Container shrinks to fit image 1.webp */
/* The Wrapper: Now constrained to the .item height */
        .wrapper {
            position: relative;
            height: 100%; /* Take up all 50vh from .item */
            display: inline-block;
            overflow: hidden;
            border-radius:0px; /* Matches the item */
        }

        /* The Image: Forced to stay within the 50vh limit */
        .wrapper img {
            height: 100%;
            width: auto; /* Keeps aspect ratio correct */
            display: block;
            object-fit: cover;
            transition: transform 5s cubic-bezier(0.2, 1, 0.3, 1);
        }

        /* Dark Overlay */
        .wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0,0,0,0.8), transparent);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 1;
        }

        /* Sidebar for the vertical text */
        .sidebar {
            position: absolute;
            top: 0;
            left: -60px;
            width: 80px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.5s ease;
            opacity: 0;
            z-index: 2;
        }

        /* The White Rotated Text */
        .vertical-title {
            color: #ffffff;
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            white-space: nowrap;
            text-transform: uppercase;
            letter-spacing: 4px;
            font-size: 1.2rem;
            font-weight: 300;
        }

        /* Hover States */
        .wrapper:hover img {
            transform: scale(1.1) rotate(-2deg);
        }

        .wrapper:hover::after {
            opacity: 1;
        }

        .wrapper:hover .sidebar {
            left: 0;
            opacity: 1;
        }
		.collection-header {
            display: flex;
            justify-content: space-between; /* Pushes content to far left and far right */
            align-items: flex-end; /* Aligns text to the bottom of the row */
            padding-bottom: 15px;
            margin:50px 0px;
            border-bottom: 1px solid #94897c;
			color:#685c4e;
        }

        .collection-title {
            font-size: 2.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin: 0;
        }

        .collection-title i {
            font-style: italic;
            font-family: 'Georgia', serif;
            text-transform: capitalize;
            color: #94897c;
        }

        .all-collection-link {
            text-decoration: none;
            color: #94897c;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-bottom: 1px solid transparent;
            transition: border-color 0.3s;
        }

        .all-collection-link:hover {
            border-color: #94897c;
        }
		.first-item{
			max-width:280px;
			width:100%;
			height:90vh;
			color:#94897c;
			line-height: 32px;
		}
		.sticky-wrapper {
            position: relative;
            height: 350vh; /* Smooth duration for the effect */
            
        }

        .sticky-viewport {
            position: sticky;
            top: 0;
            height: 100vh;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        /* Title at the Top */
        .top-title-area {
            position: absolute;
            top: 10vh; /* Positioned at the top */
            z-index: 20;
            text-align: center;
            width: 100%;
            will-change: transform, opacity;
        }

        .top-title-area h3 {
            font-size: clamp(2.5rem, 8vw, 6rem);
            margin: 0;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            font-weight: 400;
			color: white;
			text-shadow: 0px 0px 10px #00000069;
        }

        .top-title-area span {
            display: block;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.8rem;
            letter-spacing: 0.8em;
            margin-top: 10px;
            color: #715d3f;
        }

        /* Center Video - Framed Look */
        .main-stage {
            position: relative;
            width: 40vw;
            height: 55vh;
            z-index: 10;
            background: #fff;
            padding: 10px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
            will-change: width, height, border-radius;
            margin-top: 5vh; /* Slightly offset from the top title */
        }

        .main-stage video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Creative Side Images */
        .side-img {
            position: absolute;
            object-fit: cover;
            z-index: 5;
            background: #fff;
            padding: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            will-change: transform, opacity;
        }

        .l1 { width: 14vw; height: 35vh; left: 6%; top: 15%; }
        .l2 { width: 12vw; height: 22vh; left: 10%; bottom: 10%; }
        .l3 { width: 15vw; height: 32vh; right: 5%; top: 20%; }
        .l4 { width: 16vw; height: 24vh; right: 9%; bottom: 8%; }

        @media (max-width: 768px) {
            .main-stage { width: 75vw; height: 45vh; padding: 5px; }
            .l1 { width: 30vw; height: 20vh; left: 2%; top: 10%; }
            .l2 { width: 25vw; height: 15vh; left: 5%; bottom: 15%; }
            .l3 { width: 28vw; height: 18vh; right: 2%; top: 12%; }
            .l4 { width: 32vw; height: 22vh; right: 4%; bottom: 12%; }
        }
		.site-owl{
			background: #2b2a29;
			padding-bottom:100px;
			box-sizing:border-box;
		}
		.main-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            width: 90%;
            max-width: 1400px;
            gap: 5vw; /* Fluid gap */
            align-items: start; 
			margin: auto;
			padding: 100px 0px;
			box-sizing: border-box;
        }

        .left-column {
            display: grid;
            grid-template-rows: auto auto;
            gap: 1vh;
        }

        .row-top .solid-text {
            font-size: var(--fs-solid);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            display: block;
            line-height: 1.1;
            font-weight: 400;
			color:var(--text-gold);
        }

        .row-bottom-split {
            display: grid;
            grid-template-columns: 1fr 1.8fr; 
            align-items: start;
            gap: 3vw;
        }

        .mini-caption {
            color: var(--text-secondary);
            font-size: clamp(0.75rem, 1vw, 0.9rem);
            line-height: 1.6;
            font-weight: 300;
            padding-top: 10px;
        }

        .outline-text {
            font-size: var(--fs-outline);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: transparent;
            -webkit-text-stroke: 1px var(--text-gold);
            line-height: 1.1;
            white-space: nowrap;
        }

        .right-column {
            display: flex;
            flex-direction: column;
        }

        .team-desc {
            color: var(--text-secondary);
            font-size: clamp(0.7rem, 0.9vw, 0.85rem);
            line-height: 1.8;
            font-weight: 300;
            margin-bottom: 30px;
        }

        .portfolio-btn {
            text-decoration: none;
            color: var(--text-gold);
            text-transform: uppercase;
            font-size: 0.75rem;
            letter-spacing: 2px;
            border-bottom: 1px solid rgba(181, 164, 139, 0.4);
            width: fit-content;
            padding-bottom: 5px;
        }

        /* --- MOBILE RESPONSIVE (BLOCK DISPLAY) --- */
        @media (max-width: 768px) {
            body {
                padding-top: 40px; 
            }

            .main-grid, 
            .left-column, 
            .row-bottom-split, 
            .right-column {
                display: block; 
                width: 100%;
                text-align: center;
            }

            .mini-caption {
                display: none; 
            }

            .row-top .solid-text {
                margin-bottom: 8px;
            }

            .outline-text {
                white-space: normal;
                display: block;
                margin-bottom: 25px;
            }

            .team-desc {
                margin: 0 auto 20px auto;
                max-width: 85%;
            }

            .portfolio-btn {
                margin: 0 auto;
                display: block; 
            }
        }
		.marquee {
			overflow: hidden;
			width: 100%;
			background: #2b2a29;
			padding: 5px 0;
			position: relative;
		  }

		  .rail {
			display: flex;
			will-change: transform;
			transform: translate3d(0,0,0);
		  }

		  
		  .spacer {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #0a0a0a;
            font-size: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 5px;
            color: #333;
        }

        .stack-container {
            width: 100%;
        }

        /* --- THE CARD --- */
        .card {
            position: sticky;
            top: 0;
            height: 100vh;
            width: 100%;
            display: flex;
            overflow: hidden;
            background: #000;
            /* FIX: Use uniform scale() instead of scaleX() */
            transform: scale(var(--shrink, 1));
            transform-origin: center center;
            will-change: transform;
            border-bottom: 1px solid #111;
        }

        /* --- IMAGE SECTION --- */
        .image-side {
            flex: 1;
            height: 100%;
            overflow: hidden;
        }

        .image-side img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ensures image maintains aspect ratio */
            display: block;
        }

        /* --- CONTENT SECTION --- */
        .content-side {
            flex: 1.2;
            padding: 6% 5%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: #000;
        }

        .headline {
            font-size: clamp(2.5rem, 5vw, 5rem);
            text-transform: uppercase;
            line-height: 1.1;
            margin-bottom: auto;
            font-weight: 400;
			color:white;
        }

        .footer-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-top: 50px;
        }

        .description {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9rem;
            color: #a0a0a0;
            line-height: 1.8;
            max-width: 300px;
        }

        /* --- BUTTON --- */
        .discover-btn {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
            color: white;
        }

        .circle {
            width: 110px;
            height: 110px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .arrow { font-size: 1.2rem; }

        /* Mobile specific adjustments */
        @media (max-width: 900px) {
            .card { flex-direction: column; }
            .image-side { height: 40%; }
            .content-side { flex: none; height: 60%; padding: 30px; }
            .headline { font-size: 2rem; }
            .footer-row { margin-top: 20px; }
            .description { display: none; } /* Hide desc on mobile stack for space */
        }
		