: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;
}
.clearfix{
	clear:both;
}
/* =========================
   Base Menu Header (Original)
========================= */
.app-menu-header {
  position: relative;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.app-nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;

  /* original over slideshow */
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.app-logo {
  font-size: 22px;
  font-weight: bold;
  margin-right: auto;
  color: #fff;
}

.app-nav-list {
  list-style: none;
  display: flex;
  gap: 55px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.app-nav-list a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  position: relative;
}

.app-has-submenu {
  position: relative;
}

.app-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);
}

.app-submenu li {
  padding: 10px 20px;
}

.app-submenu li a {
  color: #000;
  display: block;
}

.app-has-submenu:hover .app-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.app-search-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   Sticky Clone
========================= */
.app-sticky-clone {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  /* background + blur */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(85, 85, 85, 0.74);

  /* slide down effect */
  transform: translateY(-100%);
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  z-index: 1000;

  display: flex;
  flex-direction: column;

  /* FIX: force height to match nav-container */
  height: 72px; /* adjust to your nav height (padding + font size) */
}

.app-sticky-clone.show {
  transform: translateY(0);
  opacity: 1;
}

/* force inner nav container relative inside clone */
.app-sticky-clone .app-nav-container {
  position: relative; /* so sticky clone has height */
  width: 100%;
  left: 0;
  transform: none;
}

.app-search-btn svg {
  color: #fff;
}

/* =========================
   Search Overlay
========================= */
/* Search Overlay */
.app-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16,17,22,0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 5000; /* higher than mobile menu */
}

.app-search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.app-search-container {
  position: relative;
  width: 90%;
  max-width: 500px;
}

.app-search-input {
  width: 100%;
  padding: 18px 22px;
  font-size: 18px;
  border-radius: 14px;
  border: none;
  outline: none;
  box-sizing: border-box;
}

.app-close-search {
  position: absolute;
  top: -45px;
  right: 0;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}
.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 {
    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: 400vh; 
        }

        .sticky-viewport {
            position: sticky;
            top: 0;
            height: 100vh;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        .top-title-area {
            position: absolute;
            top: 10vh;
            z-index: 25;
            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-size: 0.8rem;
            letter-spacing: 0.8em;
            margin-top: 10px;
            color: #715d3f;
        }

        .main-stage {
            position: relative;
            width: 40vw;
            height: 55vh;
            z-index: 10;
            background: #fff;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
            will-change: width, height, transform;
        }

        .main-stage video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .side-img {
            position: absolute;
            object-fit: cover;
            z-index: 5;
            background: #fff;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            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%; }


        .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;
			position:relative;
        }

        .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;
        }

        .discover-btn .arrow { 
			font-size: 1.2rem;
			position: absolute;
			left: 50%;
			transform: translateX(-50%);
			bottom: 20px;
		}

        /* 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 */
        }
		
        
		@media (max-width: 768px) {
			
			
            .mobile-col {
                position: absolute;
                display: flex;
                flex-direction: column;
                gap: 5px;
                width: 25vw;
                z-index: 20;
                will-change: transform;
                top: 64%;
                transform: translateY(-50%);
            }
            #col-left { left: 5px; }
            #col-right { right: 5px; }
            .side-img {
                position: relative !important; 
                width: 100% !important;
                left: auto !important;
                right: auto !important;
                top: auto !important;
                bottom: auto !important;
                opacity: 1 !important;
                
            }
            .main-stage {
                position: absolute;
                width: 45vw; 
                height: 40vh;
                z-index: 5; 
            }
        }

        @media (min-width: 769px) {
            .extra { display: none; }
            .mobile-col { display: contents; } 
			
        }
		.wedding-footer {
    background-color: #ffffff;
    border-top: 1px solid #f1ece8;
    padding: 80px 8%;
    color: #3d3d3d;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-brand h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 15px;
}

.footer-brand p {
    max-width: 280px;
    color: #8a7f78;
    font-size: 15px;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 18px;
    font-weight: 500;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
    text-decoration: none;
    color: #7a6f68;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #b48a78;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 8px;
    color: #7a6f68;
}

.socials a {
    display:inline-block;
    margin-right:15px;
    transition:0.3s ease;
}

.socials a svg {
    width:24px;
    height:24px;
    fill:#7a6f68;
    transition:0.3s ease;
}

.socials a:hover svg {
    fill:#b48a78;
    transform:scale(1.1);
}

.footer-bottom {
    margin-top: 70px;
    padding-top: 25px;
    border-top: 1px solid #f3ede9;
    text-align: center;
    font-size: 13px;
    color: #a89b94;
    letter-spacing: 1px;
}

/* ========== Responsive ========== */

@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-bottom {
        margin-top: 40px;
    }
}
.section-container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
	overflow:hidden;
}

.main-carousel {
    width: 100%;
    padding: 0 5%;
    overflow: visible !important;
}

/* DESKTOP */
.carousel-cell {
    width: calc((100% - 160px) / 3);
    margin-right: 40px;
    height: 350px;
}

@media (max-width: 1400px) {
    .carousel-cell {
        width: calc((100% - 120px) / 3);
        margin-right:35;
    }
}

@media (max-width: 1200px) {
    .carousel-cell {
        width: calc((100% - 90px) / 3);
        margin-right: 30;
        height: 320px;
    }
}

@media (max-width: 1024px) {
    .carousel-cell {
        width: calc((100% - 60px) / 3);
        margin-right: 25px;
    }
}

@media (max-width: 700px) {
    .main-carousel { padding: 0 4%; }
    .carousel-cell {
        width: calc((100% - 30px) / 2);
        margin-right: 20px;
        height: 280px;
    }
}

@media (max-width: 480px) {
    .carousel-cell {
        width: calc((100% - 20px) / 2);
        margin-right: 15px;
        height: 250px;
    }
}

.stair-card {
    width: 100%;
    height: 100%;
    background: var(--card-bg);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    position: relative;
    will-change: transform;
    transform-style: preserve-3d;
}
.tag { font-size: 10px; letter-spacing: 2px; color: #555; margin-bottom: 20px; }
.title { font-size: 26px; line-height: 1.1; margin-bottom: 10px; font-weight: 300; }
.description { font-size: 14px; color: #777; line-height: 1.5; margin-top: auto; }

.flickity-page-dots,
.flickity-prev-next-button { display: none !important; }

.flickity-viewport { overflow: visible !important; }
.mobile-footer-bar {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 500px;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    z-index: 1000;
  }

  .mobile-footer-bar a, .mobile-menu-btn {
    text-decoration: none;
    color: #333;
    text-align: center;
    font-size: 12px;
    flex: 1;
    transition: transform 0.2s;
    cursor: pointer;
  }

  .mobile-footer-bar a:hover, .mobile-menu-btn:hover {
    transform: translateY(-5px);
  }

  .mobile-menu-btn span {
    font-size: 20px;
    display: block;
    transition: transform 0.3s;
  }

  /* Fullscreen slide menu */
  .slideup-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #fff;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.2);
    overflow: hidden;
    transition: height 0.3s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .slideup-menu.open {
    height: 100%;
  }

  /* Menu items fade in */
  .slideup-menu .slideup-items {
    opacity: 0;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    width: 80%;
    text-align: center;
    transition: opacity 0.3s ease;
  }

  .slideup-menu.open .slideup-items {
    opacity: 1;
    transition-delay: 0.3s; /* after slide-up finished */
  }

  .slideup-menu .slideup-items a {
    padding: 15px 0;
    font-size: 20px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
  }

  .slideup-menu .slideup-items a:last-child {
    border-bottom: none;
  }

  /* Rotate arrow when active */
  .mobile-menu-btn.active span {
    transform: rotate(180deg);
  }
  /* Mobile-only bottom nav */
  @media (min-width: 768px) {
    .mobile-footer-bar,
    .slideup-menu {
      display: none; /* hide nav & slide-up menu on desktop */
    }
	
  }
  @media (max-width: 768px) {
    .app-menu-header {
      display: none; /* hide nav & slide-up menu on desktop */
    }
	.social-icons{
		margin:auto;
	}
  }
  /* Accordion items */
.mobile-item {
  width: 100%;
  border-bottom: 1px solid #eee;
}

.mobile-item-header {
  padding: 15px 0;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-item-header .arrow {
  transition: transform 0.3s ease;
}

/* Submenu hidden */
.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-submenu a {
  padding: 10px 0;
  font-size: 16px;
  color: #666;
  text-decoration: none;
}

/* Open state */
.mobile-item.open .mobile-submenu {
  max-height: 300px; /* big enough */
}

.mobile-item.open .arrow {
  transform: rotate(180deg);
}