:root {
  /* ── Gold Palette ── */
  --gold-deep:    #8B6914;
  --gold-mid:     #B8912A;
  --gold-bright:  #D4AF60;
  --gold-light:   #E8D08A;
  --gold-pale:    #F5EAC8;
  --gold:         #c9a84c;

  /* ── Coffee / Brown Palette ── */
  --coffee-dark:  #2C1A0E;
  --coffee-mid:   #5C3A1E;
  --coffee-light: #9B6B3A;
  --brown-dark:   #4a3728;
  --brown-accent: #8b7355;

  /* ── Beige / Cream Palette ── */
  --beige-deep:    #C4A882;
  --beige-mid:     #DEC9A8;
  --beige-light:   #F0E4D0;
  --beige-cream:   #FAF6EE;
  --beige-lightest:#faf8f4;
  --beige-warm:    #d9cdb8;
  --cream:         #FDFAF5;

  /* ── Text Colours ── */
  --text-dark:   #1C1008;
  --text-main:   #2e2520;
  --text-mid:    #4A2E14;
  --text-muted:  #7a6a5a;
  --text-light:  #7A5C38;
  --white:       #FFFFFF;

  /* ── Typography ── */
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-serif:   'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Jost', sans-serif;

  /* ── Misc ── */
  --shadow-gold: 0 4px 30px rgba(180,140,40,0.25);
  --shadow-deep: 0 8px 50px rgba(44,26,14,0.3);
  --r: 3px;
  --ease: cubic-bezier(0.16,1,0.3,1);
}



			* { box-sizing: border-box; }

			html { scroll-behavior: smooth; }

			
			body {
  background: var(--cream);
  color: var(--text-dark);
  font-family: var(--ff-body);
  overflow-x: hidden;
  cursor: default;
  padding-top: 66px; /* offset for fixed navbar */
}

			/* ── NAVBAR ── */
			.navbar-custom {
				background: rgba(250,248,244,0.92);
				backdrop-filter: blur(12px);
				border-bottom: 1px solid var(--beige-mid);
				padding: 0px 0;
				position: fixed;
				width: 100%;
				top: 0;
				z-index: 1000;
				transition: box-shadow 0.3s;
			}
			.navbar-custom.scrolled {
				box-shadow: 0 2px 24px rgba(74,55,40,0.08);
			}
			.navbar-brand-text {
				font-family: 'Cormorant Garamond', serif;
				font-size: clamp(18px, 5vw, 26px);
				font-weight: 600;
				letter-spacing: clamp(1px, 0.5vw, 3px);
				color: var(--brown-dark) !important;
				text-transform: none;
			}
			.navbar-brand-text span { color: var(--gold); }
			.nav-link-custom {
				font-size: 12px;
				letter-spacing: 2px;
				text-transform: none;
				font-weight: 500;
				color: var(--text-muted) !important;
				padding: 6px 16px !important;
				transition: color 0.2s;
			}
			.nav-link-custom:hover { color: var(--brown-accent) !important; }
			.nav-cta {
				background: var(--brown-dark);
				color: var(--beige-lightest) !important;
				border-radius: 2px;
				padding: 8px 22px !important;
				letter-spacing: 2px;
				font-size: 11px;
			}
			.nav-cta:hover { background: var(--brown-accent); color: #fff !important; }

			/* ── VIDEO SLIDER / HERO ── */
			.hero-slider {
				position: relative;
				height: 100vh;
				min-height: 600px;
				overflow: hidden;
			}

			.slide {
				position: absolute;
				inset: 0;
				opacity: 0;
				transition: opacity 1.2s ease;
				z-index: 1;
			}
			.slide.active { opacity: 1; z-index: 2; }

			.slide video {
				width: 100%;
				height: 100%;
				object-fit: cover;
				display: block;
			}

			/* Fallback gradient when video isn't available */
			.slide-fallback {
				width: 100%;
				height: 100%;
				object-fit: cover;
			}
			.slide-1-bg { background: linear-gradient(135deg, #c9b89a 0%, #e8d5b0 40%, #d4c4a8 70%, #b5a48c 100%); }
			.slide-2-bg { background: linear-gradient(135deg, #a89070 0%, #c8b898 40%, #d9cdb8 70%, #e8e0d0 100%); }
			.slide-3-bg { background: linear-gradient(135deg, #8b7355 0%, #b5a48c 40%, #d9cdb8 70%, #f0e8d8 100%); }

			/* Overlay */
			.slide-overlay {
				position: absolute;
				inset: 0;
				background: linear-gradient(
					to bottom,
					rgba(30,20,12,0.15) 0%,
					rgba(30,20,12,0.25) 40%,
					rgba(30,20,12,0.55) 100%
				);
				z-index: 3;
			}

			/* Hero content */
			.hero-content {
				position: absolute;
				inset: 0;
				z-index: 4;
				display: flex;
				flex-direction: column;
				align-items: center;
				justify-content: flex-end;
				padding-bottom: 10vh;
				text-align: center;
				padding-left: 20px;
				padding-right: 20px;
			}

			.slide-tag {
				font-size: 11px;
				letter-spacing: 4px;
				text-transform: uppercase;
				color: var(--gold-light);
				margin-bottom: 14px;
				opacity: 0;
				transform: translateY(20px);
				transition: opacity 0.8s 0.3s, transform 0.8s 0.3s;
			}
			.slide.active .slide-tag { opacity: 1; transform: translateY(0); }

			.slide-title {
				font-family: 'Cormorant Garamond', serif;
				font-size: clamp(40px, 7vw, 86px);
				font-weight: 300;
				color: #fff;
				line-height: 1.1;
				letter-spacing: -1px;
				margin-bottom: 18px;
				opacity: 0;
				transform: translateY(28px);
				transition: opacity 0.9s 0.5s, transform 0.9s 0.5s;
			}
			.slide.active .slide-title { opacity: 1; transform: translateY(0); }

			.slide-subtitle {
				font-size: 15px;
				font-weight: 300;
				color: rgba(255,255,255,0.80);
				letter-spacing: 1px;
				max-width: 480px;
				margin-bottom: 36px;
				opacity: 0;
				transform: translateY(20px);
				transition: opacity 0.8s 0.7s, transform 0.8s 0.7s;
			}
			.slide.active .slide-subtitle { opacity: 1; transform: translateY(0); }

			/* Hero button group */
			.hero-btn-group {
				display: flex;
				flex-wrap: wrap;
				gap: 10px;
				justify-content: center;
				margin-top: 8px;
			}
			.hero-btn-group .btn {
				font-size: clamp(11px, 3vw, 13px);
				padding: 8px 16px;
				white-space: nowrap;
			}

			.hero-btn {
				display: inline-block;
				padding: 14px 38px;
				font-size: 11px;
				letter-spacing: 3px;
				text-transform: uppercase;
				font-weight: 600;
				border: 1.5px solid rgba(255,255,255,0.7);
				color: #fff;
				background: transparent;
				text-decoration: none;
				transition: all 0.3s;
				opacity: 0;
				transform: translateY(20px);
				transition: background 0.3s, color 0.3s, border-color 0.3s, opacity 0.8s 0.9s, transform 0.8s 0.9s;
			}
			.slide.active .hero-btn { opacity: 1; transform: translateY(0); }
			.hero-btn:hover {
				background: rgba(255,255,255,0.15);
				border-color: #fff;
				color: #fff;
			}

			/* Slider controls */
			.slider-dots {
				position: absolute;
				bottom: 32px;
				left: 50%;
				transform: translateX(-50%);
				z-index: 10;
				display: flex;
				gap: 10px;
			}
			.dot {
				width: 6px;
				height: 6px;
				border-radius: 50%;
				background: rgba(255,255,255,0.4);
				cursor: pointer;
				transition: all 0.3s;
				border: none;
				padding: 0;
			}
			.dot.active {
				background: #fff;
				width: 22px;
				border-radius: 3px;
			}

			.slider-arrow {
				position: absolute;
				top: 50%;
				transform: translateY(-50%);
				z-index: 10;
				background: rgba(255,255,255,0.12);
				border: 1px solid rgba(255,255,255,0.3);
				color: #fff;
				width: 48px;
				height: 48px;
				border-radius: 50%;
				display: flex;
				align-items: center;
				justify-content: center;
				cursor: pointer;
				transition: all 0.3s;
				font-size: 18px;
			}
			.slider-arrow:hover { background: rgba(255,255,255,0.25); }
			.slider-prev { left: 28px; }
			.slider-next { right: 28px; }

			/* Progress bar */
			.slider-progress {
				position: absolute;
				bottom: 0;
				left: 0;
				height: 2px;
				background: var(--gold);
				z-index: 10;
				animation: progress 5s linear infinite;
			}
			@keyframes progress {
				from { width: 0%; }
				to  { width: 100%; }
			}

			/* ── SECTION ENTRANCE ── */
			.section-label {
				font-size: 11px;
				letter-spacing: 4px;
				text-transform: uppercase;
				color: var(--beige-deep);
				margin-bottom: 10px;
			}
			.section-title {
				font-family: 'Cormorant Garamond', serif;
				font-size: clamp(30px, 5vw, 54px);
				font-weight: 300;
				color: var(--brown-dark);
				letter-spacing: -0.5px;
				line-height: 1.15;
			}
			.divider-gold {
				width: 48px;
				height: 1.5px;
				background: var(--gold);
				margin: 20px auto;
			}

			/* ── THREE ENTRY CARDS ── */
			.entry-section {
				background: var(--beige-light);
				padding: 100px 0 80px;
			}

			.entry-card {
				background: var(--beige-lightest);
				border: 1px solid var(--beige-mid);
				border-radius: 4px;
				padding: 52px 36px 44px;
				text-align: center;
				position: relative;
				overflow: hidden;
				transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
				height: 100%;
			}
			.entry-card::before {
				content: '';
				position: absolute;
				top: 0; left: 0; right: 0;
				height: 3px;
				background: linear-gradient(90deg, var(--gold), var(--beige-warm));
				transform: scaleX(0);
				transform-origin: left;
				transition: transform 0.4s ease;
			}
			.entry-card:hover {
				transform: translateY(-6px);
				box-shadow: 0 20px 56px rgba(74,55,40,0.10);
				border-color: var(--gold-light);
			}
			.entry-card:hover::before { transform: scaleX(1); }

			.card-icon-wrap {
				width: 72px;
				height: 72px;
				border-radius: 50%;
				background: var(--beige-mid);
				display: flex;
				align-items: center;
				justify-content: center;
				margin: 0 auto 28px;
				transition: background 0.3s;
			}
			.entry-card:hover .card-icon-wrap { background: var(--gold-light); }

			.card-icon-wrap i {
				font-size: 28px;
				color: var(--brown-accent);
			}

			.card-num {
				position: absolute;
				top: 20px;
				right: 24px;
				font-family: 'Cormorant Garamond', serif;
				font-size: 52px;
				font-weight: 600;
				color: var(--beige-mid);
				line-height: 1;
				transition: color 0.3s;
			}
			.entry-card:hover .card-num { color: var(--gold-light); }

			.card-title {
				font-family: 'Cormorant Garamond', serif;
				font-size: 26px;
				font-weight: 600;
				color: var(--brown-dark);
				margin-bottom: 12px;
				letter-spacing: 0.5px;
			}
			.card-text {
				font-size: 14px;
				color: var(--text-muted);
				line-height: 1.75;
				margin-bottom: 32px;
				font-weight: 300;
			}

			.btn-enter {
				display: inline-block;
				padding: 12px 32px;
				font-size: 11px;
				letter-spacing: 3px;
				text-transform: uppercase;
				font-weight: 600;
				background: transparent;
				border: 1.5px solid var(--brown-accent);
				color: var(--brown-accent);
				text-decoration: none;
				transition: all 0.3s;
				border-radius: 2px;
			}
			.btn-enter:hover {
				background: var(--brown-dark);
				border-color: var(--brown-dark);
				color: var(--beige-lightest);
			}

			/* Highlighted middle card */
			.entry-card.featured {
				background: var(--brown-dark);
				border-color: var(--brown-dark);
			}
			.entry-card.featured::before {
				background: linear-gradient(90deg, var(--gold), #e8c88a);
			}
			.entry-card.featured .card-num { color: rgba(255,255,255,0.08); }
			.entry-card.featured:hover .card-num { color: rgba(201,169,110,0.2); }
			.entry-card.featured .card-icon-wrap { background: rgba(255,255,255,0.08); }
			.entry-card.featured:hover .card-icon-wrap { background: rgba(201,169,110,0.25); }
			.entry-card.featured .card-icon-wrap i { color: var(--gold); }
			.entry-card.featured .card-title { color: #fff; }
			.entry-card.featured .card-text { color: rgba(255,255,255,0.55); }
			.entry-card.featured .btn-enter {
				border-color: var(--gold);
				color: var(--gold);
			}
			.entry-card.featured .btn-enter:hover {
				background: var(--gold);
				color: var(--brown-dark);
			}

			/* ── FEATURE STRIP ── */
			.feature-strip {
				background: var(--beige-mid);
				padding: 40px 0;
				border-top: 1px solid var(--beige-warm);
				border-bottom: 1px solid var(--beige-warm);
			}
			.feature-item {
				display: flex;
				align-items: center;
				gap: 14px;
				justify-content: center;
			}
			.feature-item i {
				font-size: 22px;
				color: var(--gold);
			}
			.feature-item span {
				font-size: 12px;
				letter-spacing: 2px;
				text-transform: uppercase;
				color: var(--text-muted);
				font-weight: 500;
			}

			/* ── ABOUT STRIP ── */
			.about-strip {
				background: var(--beige-lightest);
				padding: 100px 0;
			}
			.about-img-wrap {
				position: relative;
			}
			.about-img-main {
				width: 100%;
				height: 480px;
				object-fit: cover;
				border-radius: 2px;
				background: linear-gradient(145deg, #d9cdb8, #c9b89a);
				display: flex;
				align-items: center;
				justify-content: center;
			}
			.about-img-placeholder {
				font-family: 'Cormorant Garamond', serif;
				font-size: 80px;
				color: var(--beige-mid);
				opacity: 0.6;
			}
			.about-img-badge {
				position: absolute;
				bottom: -24px;
				right: -24px;
				width: 120px;
				height: 120px;
				background: var(--gold);
				border-radius: 50%;
				display: flex;
				flex-direction: column;
				align-items: center;
				justify-content: center;
				text-align: center;
			}
			.about-img-badge .num {
				font-family: 'Cormorant Garamond', serif;
				font-size: 32px;
				font-weight: 700;
				color: var(--brown-dark);
				line-height: 1;
			}
			.about-img-badge .lbl {
				font-size: 9px;
				letter-spacing: 2px;
				text-transform: uppercase;
				color: var(--brown-dark);
				font-weight: 600;
				margin-top: 4px;
			}
			.about-body p {
				font-size: 15px;
				color: var(--text-muted);
				line-height: 1.85;
				font-weight: 300;
			}
			.stat-row { margin-top: 40px; }
			.stat-item .num {
				font-family: 'Cormorant Garamond', serif;
				font-size: 42px;
				font-weight: 600;
				color: var(--brown-dark);
				line-height: 1;
			}
			.stat-item .lbl {
				font-size: 11px;
				letter-spacing: 2px;
				text-transform: uppercase;
				color: var(--beige-deep);
				margin-top: 4px;
			}

			/* ── TESTIMONIAL ── */
			.testimonial-section {
				background: var(--brown-dark);
				padding: 90px 0;
				position: relative;
				overflow: hidden;
			}
			.testimonial-section::before {
				content: '\201C';
				position: absolute;
				top: -30px;
				left: 50%;
				transform: translateX(-50%);
				font-family: 'Cormorant Garamond', serif;
				font-size: 300px;
				color: rgba(255,255,255,0.03);
				line-height: 1;
				pointer-events: none;
			}
			.testimonial-text {
				font-family: 'Cormorant Garamond', serif;
				font-size: clamp(22px, 3.5vw, 38px);
				font-weight: 300;
				font-style: italic;
				color: rgba(255,255,255,0.88);
				line-height: 1.5;
				max-width: 680px;
				margin: 0 auto 28px;
				text-align: center;
			}
			.testimonial-author {
				font-size: 11px;
				letter-spacing: 3px;
				text-transform: uppercase;
				color: var(--gold);
				text-align: center;
			}

			/* ── FOOTER ── */
			.footer-main {
				background: var(--beige-lightest);
				border-top: 1px solid var(--beige-mid);
				padding: 60px 0 30px;
			}
			.footer-brand {
				font-family: 'Cormorant Garamond', serif;
				font-size: 28px;
				font-weight: 600;
				letter-spacing: 4px;
				color: var(--brown-dark);
				text-transform: uppercase;
			}
			.footer-brand span { color: var(--gold); }
			.footer-tagline {
				font-size: 13px;
				color: var(--text-muted);
				margin-top: 8px;
				font-weight: 300;
				letter-spacing: 1px;
			}
			.footer-link {
				font-size: 12px;
				color: var(--text-muted);
				text-decoration: none;
				letter-spacing: 1.5px;
				text-transform: uppercase;
				font-weight: 500;
				transition: color 0.2s;
				display: block;
				margin-bottom: 10px;
			}
			.footer-link:hover { color: var(--brown-accent); }
			.footer-col-title {
				font-size: 10px;
				letter-spacing: 3px;
				text-transform: uppercase;
				color: var(--beige-deep);
				font-weight: 600;
				margin-bottom: 18px;
			}
			.footer-bottom {
				border-top: 1px solid var(--beige-mid);
				padding-top: 24px;
				margin-top: 40px;
				font-size: 12px;
				color: var(--beige-deep);
			}
			.social-link {
				width: 36px;
				height: 36px;
				border: 1px solid var(--beige-mid);
				border-radius: 50%;
				display: inline-flex;
				align-items: center;
				justify-content: center;
				color: var(--text-muted);
				text-decoration: none;
				margin-right: 6px;
				transition: all 0.2s;
				font-size: 14px;
			}
			.social-link:hover {
				border-color: var(--gold);
				color: var(--gold);
			}

			/* Animate on scroll */
			.fade-up {
				opacity: 0;
				transform: translateY(30px);
				transition: opacity 0.7s ease, transform 0.7s ease;
			}
			.fade-up.visible { opacity: 1; transform: translateY(0); }

			@media (max-width: 768px) {
				.slider-arrow { display: none; }
				.about-img-badge { right: 0; bottom: -16px; }
				.about-img-wrap { overflow: visible; }
				.entry-card { margin-bottom: 24px; }
			}
			
			
			/* ── CATEGORIES ── */
    .section { padding: 90px 24px; }
    .section-sm { padding: 60px 24px; }

    .section-header {
      text-align: center;
      margin-bottom: 56px;
    }

    .eyebrow {
      font-size: 10px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }

    .section-title2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(32px, 3.5vw, 52px);
      font-weight: 300;
      line-height: 1.15;
      color: var(--charcoal);
    }
    .section-title em { font-style: italic; color: var(--warm-brown); }

    .section-sub {
      font-size: 14px;
      color: var(--text-mid);
      margin-top: 14px;
      max-width: 480px;
      margin-inline: auto;
      line-height: 1.7;
    }

    .ornament {
      width: 56px; height: 1px;
      background: var(--gold);
      margin: 16px auto;
      position: relative;
    }
    .ornament::before, .ornament::after {
      content: '';
      position: absolute;
      width: 5px; height: 5px;
      border: 1px solid var(--gold);
      transform: rotate(45deg);
      top: -2px;
    }
    .ornament::before { left: -8px; }
    .ornament::after { right: -8px; }
			/* Category grid */
    .cat-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .cat-card {
      position: relative;
      overflow: hidden;
      aspect-ratio: 3/4;
      cursor: pointer;
    }

    .cat-card img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .cat-card:hover img { transform: scale(1.07); }

    .cat-card-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(30,26,21,0.72) 0%, rgba(30,26,21,0.1) 60%, transparent 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 28px 24px;
    }

    .cat-label {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 400;
      color: #fff;
      margin-bottom: 4px;
    }
    .cat-count {
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold-light);
    }
    .cat-arrow {
      position: absolute;
      top: 20px; right: 20px;
      width: 38px; height: 38px;
      border: 1px solid rgba(255,255,255,0.4);
      display: flex; align-items: center; justify-content: center;
      opacity: 0;
      transform: translateY(-6px);
      transition: opacity 0.3s, transform 0.3s;
      color: #fff;
    }
    .cat-card:hover .cat-arrow { opacity: 1; transform: translateY(0); }
			
			/* ── FEATURED PRODUCTS ── */
    .products-section { background: var(--cream); }

    .filter-tabs {
      display: flex;
      justify-content: center;
      gap: 0;
      margin-bottom: 8px;
      border: 1px solid var(--border);
      display: inline-flex;
      left: 50%; position: relative; transform: translateX(-50%);
    }

    .filter-tab {
      padding: 10px 24px;
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--text-mid);
      border-right: 1px solid var(--border);
      transition: background 0.3s, color 0.3s;
    }
    .filter-tab:last-child { border-right: none; }
    .filter-tab.active, .filter-tab:hover {
      background: var(--charcoal);
      color: var(--gold-light);
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .product-card {
      position: relative;
    }

    .product-img-wrap {
      position: relative;
      overflow: hidden;
      background: var(--ivory);
      aspect-ratio: 3/4;
      margin-bottom: 16px;
    }

    .product-img-wrap img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .product-card:hover .product-img-wrap img { transform: scale(1.06); }

    .product-badge {
      position: absolute;
      top: 14px; left: 14px;
      padding: 4px 10px;
      font-size: 9px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 500;
    }
    .badge-new { background: var(--charcoal); color: var(--gold-light); }
    .badge-sale { background: #8b2020; color: #fff; }

    .product-actions {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      display: flex;
      transform: translateY(100%);
      transition: transform 0.35s ease;
    }
    .product-card:hover .product-actions { transform: translateY(0); }

    .product-actions button {
      flex: 1;
      padding: 13px;
      border: none;
      cursor: pointer;
      font-family: 'Jost', sans-serif;
      font-size: 10px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      transition: background 0.3s;
    }

    .btn-add {
      background: var(--charcoal);
      color: var(--gold-light);
    }
    .btn-add:hover { background: var(--warm-brown); }

    .btn-wish {
      background: rgba(255,255,255,0.92);
      color: var(--charcoal);
      flex: 0 0 50px;
      display: flex; align-items: center; justify-content: center;
    }
    .btn-wish:hover { background: var(--gold); color: #fff; }
    .btn-wish svg { width: 18px; height: 18px; }

    .product-meta { padding: 0 2px; }
    .product-brand {
      font-size: 10px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 4px;
    }
    .product-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      font-weight: 400;
      color: var(--charcoal);
      margin-bottom: 8px;
      line-height: 1.3;
    }
    .product-price {
      font-size: 14px;
      color: var(--warm-brown);
    }
    .product-price s {
      color: var(--text-mid);
      font-size: 12px;
      margin-right: 6px;
    }

    .star-row {
      display: flex;
      gap: 2px;
      margin-bottom: 8px;
    }
    .star { color: var(--gold); font-size: 11px; }
	
	
	
	
	/*css2*/
	a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ═══════════════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════════════ */
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--gold-bright);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 32px; height: 32px;
  border: 1px solid rgba(212,175,96,0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s var(--ease);
}

/* ═══════════════════════════════════════════════
   TOP RIBBON
═══════════════════════════════════════════════ */
.top-ribbon {
  background: var(--coffee-dark);
  color: var(--gold-light);
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  padding: 7px 1rem;
  border-bottom: 1px solid var(--gold-deep);
}
.top-ribbon span { color: var(--gold-bright); margin: 0 0.5rem; }

/* ═══════════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════════ */
header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(250,246,238,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--beige-mid);
  box-shadow: 0 2px 20px rgba(44,26,14,0.08);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 2rem;
  gap: 1rem;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--coffee-dark);
  letter-spacing: 0.08em;
}
.brand-name em {
  color: var(--gold-mid);
  font-style: normal;
}
.brand-sub {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coffee-light);
  margin-top: 3px;
}

nav { display: flex; align-items: center; gap: 0.2rem; }
nav a {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 0.5rem 0.9rem;
  border-radius: var(--r);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
nav a:hover { color: var(--gold-deep); background: var(--gold-pale); }
.nav-cta {
  background: var(--coffee-dark) !important;
  color: var(--gold-light) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 2px !important;
  margin-left: 0.5rem;
}
.nav-cta:hover { background: var(--gold-deep) !important; color: #fff !important; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.3rem;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--coffee-dark);
  border-radius: 2px;
  transition: 0.3s;
}

/* ═══════════════════════════════════════════════
   HERO VIDEO SLIDER
═══════════════════════════════════════════════ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 580px;
  overflow: hidden;
  background: var(--coffee-dark);
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.slide.active { opacity: 1; }
.slide canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
/* Gradient overlay on each slide */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44,26,14,0.72) 0%,
    rgba(44,26,14,0.3) 50%,
    rgba(44,26,14,0.55) 100%
  );
  z-index: 2;
}
.slide-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.slide-ornament {
  font-size: 1.4rem;
  color: var(--gold-bright);
  letter-spacing: 0.5em;
  margin-bottom: 1rem;
  animation: fadeUp 1s var(--ease) both;
}
.slide-tagline {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  animation: fadeUp 1s 0.1s var(--ease) both;
}
.slide-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  animation: fadeUp 1s 0.2s var(--ease) both;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.slide-title em {
  font-style: italic;
  color: var(--gold-bright);
}
.slide-desc {
  font-family: var(--ff-serif);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 300;
  color: rgba(245,234,200,0.9);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 2rem;
  animation: fadeUp 1s 0.3s var(--ease) both;
}
.slide-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-bright), transparent);
  margin: 0 auto 2rem;
  animation: fadeUp 1s 0.35s var(--ease) both;
}
.slide-btns {
  display: flex;
  gap: 1rem;
  animation: fadeUp 1s 0.45s var(--ease) both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold-mid), var(--gold-deep));
  color: #fff;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 20px rgba(139,105,20,0.5);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139,105,20,0.6);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--gold-light);
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: 1px solid rgba(212,175,96,0.6);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.btn-outline:hover {
  background: rgba(212,175,96,0.15);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

/* Slider controls */
.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.6rem;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(212,175,96,0.4);
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active {
  background: var(--gold-bright);
  width: 24px;
  border-radius: 3px;
}
.slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding: 0 1.5rem;
  pointer-events: none;
}
.arrow {
  width: 48px; height: 48px;
  border: 1px solid rgba(212,175,96,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-bright);
  font-size: 1.1rem;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s;
  background: rgba(44,26,14,0.4);
  backdrop-filter: blur(6px);
}
.arrow:hover {
  background: rgba(139,105,20,0.7);
  border-color: var(--gold-bright);
  transform: scale(1.1);
}
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold-mid), var(--gold-bright));
  z-index: 10;
  animation: progressBar 5s linear infinite;
}
@keyframes progressBar {
  from { width: 0%; }
  to   { width: 100%; }
}

/* ═══════════════════════════════════════════════
   STATS BAND
═══════════════════════════════════════════════ */
.stats-band {
  background: var(--coffee-dark);
  border-top: 1px solid var(--gold-deep);
  border-bottom: 1px solid var(--gold-deep);
  padding: 1.5rem 2rem;
}
.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 0.8rem 1.5rem;
  border-right: 1px solid rgba(212,175,96,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--beige-mid);
  margin-top: 0.3rem;
  font-weight: 300;
}

/* ═══════════════════════════════════════════════
   SECTION BASE
═══════════════════════════════════════════════ */
.section {
  padding: 6rem 2rem;
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.section-label {
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-mid);
  text-align: center;
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--coffee-dark);
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold-deep);
  font-family: var(--ff-serif);
}
.ornament-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 3rem;
}
.ornament-line::before,
.ornament-line::after {
  content: '';
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-mid));
}
.ornament-line::after {
  background: linear-gradient(to left, transparent, var(--gold-mid));
}
.ornament-line span {
  color: var(--gold-bright);
  font-size: 1rem;
}

/* ═══════════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════════ */
.about-section { background: var(--beige-cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-visual {
  position: relative;
}
.about-canvas-wrap {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  border: 1px solid var(--beige-mid);
}
.about-canvas-wrap canvas {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 110px; height: 110px;
  background: linear-gradient(135deg, var(--gold-mid), var(--gold-deep));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 20px rgba(139,105,20,0.5);
}
.about-badge .num {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.about-badge .lbl {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  line-height: 1.2;
}
.about-text { padding-top: 1rem; }
.about-text h3 {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.about-text p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.tag {
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  color: var(--coffee-mid);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════
   PRODUCTS SECTION
═══════════════════════════════════════════════ */
.products-section {
  background: var(--cream);
  position: relative;
}
.products-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(212,175,96,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139,105,20,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem;
}
.product-card {
  background: var(--beige-cream);
  border: 1px solid var(--beige-mid);
  border-radius: var(--r);
  padding: 1.8rem 1.4rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold-mid), var(--gold-bright));
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.product-card:hover::before { transform: scaleX(1); }
.product-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}
.product-name {
  font-family: var(--ff-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--coffee-dark);
  margin-bottom: 0.6rem;
}
.product-desc {
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--text-light);
}

/* ═══════════════════════════════════════════════
   DESIGNS SECTION
═══════════════════════════════════════════════ */
.designs-section { background: var(--coffee-dark); }
.designs-section .section-title { color: var(--gold-light); }
.designs-section .section-label { color: var(--gold-mid); }
.designs-section .ornament-line::before,
.designs-section .ornament-line::after {
  background: linear-gradient(to right, transparent, rgba(212,175,96,0.4));
}
.designs-section .ornament-line::after {
  background: linear-gradient(to left, transparent, rgba(212,175,96,0.4));
}
.designs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.design-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  cursor: pointer;
  aspect-ratio: 16/9;
  border: 1px solid rgba(212,175,96,0.2);
}
.design-card canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.design-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,26,14,0.92) 0%, rgba(44,26,14,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: background 0.3s;
}
.design-card:hover .design-card-overlay {
  background: linear-gradient(to top, rgba(44,26,14,0.98) 0%, rgba(44,26,14,0.4) 60%, rgba(44,26,14,0.1) 100%);
}
.design-card-name {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
}
.design-card-sub {
  font-size: 0.75rem;
  color: var(--beige-mid);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.design-card-arrow {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  border: 1px solid rgba(212,175,96,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-bright);
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.3s, background 0.3s;
}
.design-card:hover .design-card-arrow {
  opacity: 1;
  background: rgba(139,105,20,0.5);
}

/* ═══════════════════════════════════════════════
   FEATURED PRODUCTS
═══════════════════════════════════════════════ */
.featured-section { background: var(--beige-light); }
.featured-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}
.featured-slider::-webkit-scrollbar { display: none; }
.featured-card {
  flex-shrink: 0;
  scroll-snap-align: start;
  width: 280px;
  background: var(--cream);
  border: 1px solid var(--beige-mid);
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  box-shadow: 0 2px 12px rgba(44,26,14,0.06);
}
.featured-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.featured-img {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.featured-img canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  transition: transform 0.5s var(--ease);
}
.featured-card:hover .featured-img canvas { transform: scale(1.06); }
.featured-body { padding: 1.2rem; }
.featured-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  padding: 2px 8px;
  border-radius: 2px;
  margin-bottom: 0.6rem;
}
.featured-name {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--coffee-dark);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.featured-desc {
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--text-light);
}
.featured-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 0.8rem;
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.featured-link:hover { color: var(--gold-mid); border-color: var(--gold-mid); }

/* ═══════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════ */
.contact-section {
  background: var(--coffee-dark);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 50%, rgba(212,175,96,0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 20%, rgba(212,175,96,0.06) 0%, transparent 40%);
  pointer-events: none;
}
.contact-section .section-title { color: var(--gold-light); }
.contact-section .section-label { color: var(--gold-mid); }
.contact-section .ornament-line::before {
  background: linear-gradient(to right, transparent, rgba(212,175,96,0.4));
}
.contact-section .ornament-line::after {
  background: linear-gradient(to left, transparent, rgba(212,175,96,0.4));
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info {}
.contact-block {
  margin-bottom: 2rem;
}
.contact-block h4 {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(212,175,96,0.2);
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.8rem;
}
.contact-icon {
  width: 36px; height: 36px;
  background: rgba(212,175,96,0.12);
  border: 1px solid rgba(212,175,96,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  color: var(--gold-bright);
}
.contact-detail {}
.contact-detail strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--beige-mid);
  margin-bottom: 2px;
}
.contact-detail span, .contact-detail a {
  font-size: 0.9rem;
  color: var(--gold-light);
  line-height: 1.5;
  transition: color 0.2s;
}
.contact-detail a:hover { color: var(--gold-bright); }

/* Contact form */
.contact-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,96,0.2);
  border-radius: var(--r);
  padding: 2rem;
}
.contact-form-wrap h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}
.form-field {
  margin-bottom: 1rem;
}
.form-field label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--beige-mid);
  margin-bottom: 0.4rem;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,175,96,0.25);
  border-radius: 2px;
  padding: 0.7rem 0.9rem;
  color: var(--gold-light);
  font-family: var(--ff-body);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(200,175,130,0.4);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--gold-bright);
}
.form-field textarea { resize: none; height: 100px; }
.form-field select option { background: var(--coffee-dark); }
.btn-form {
  width: 100%;
  background: linear-gradient(135deg, var(--gold-mid), var(--gold-deep));
  color: #fff;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 0.5rem;
  box-shadow: 0 4px 20px rgba(139,105,20,0.4);
}
.btn-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139,105,20,0.5);
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: waPulse 2s ease-in-out infinite;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.8); }
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer {
  background: #110A04;
  border-top: 1px solid rgba(212,175,96,0.2);
  padding: 2rem;
  text-align: center;
}
.footer-logo {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-bright);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(200,175,130,0.5);
  margin-bottom: 1rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.footer-links a {
  font-size: 0.75rem;
  color: rgba(200,175,130,0.6);
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-bright); }
.footer-copy {
  font-size: 0.68rem;
  color: rgba(200,175,130,0.35);
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--coffee-dark);
  z-index: 800;
  flex-direction: column;
  padding: 5rem 2rem 2rem;
  gap: 0.2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  font-weight: 600;
  font-style: italic;
  color: var(--gold-light);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(212,175,96,0.15);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold-bright); }
.mobile-nav-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: 1px solid rgba(212,175,96,0.3);
  color: var(--gold-bright);
  font-size: 1.2rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-badge { right: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .section { padding: 4rem 1rem; }
  .section-sm { padding: 2.5rem 1rem; }
  /* hide only the custom desktop nav (not Bootstrap's navbar) */
  .header-inner > nav { display: none; }
  .nav-burger { display: flex; }
  .designs-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { gap: 0; }
  .stat-item { min-width: 120px; }
  .hero-slider { height: 80vh; min-height: 480px; }
}
@media (max-width: 480px) {
  .header-inner { padding: 0.7rem 1rem; }
  .brand-name { font-size: 1.2rem; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .slide-btns { flex-direction: column; align-items: center; }
}

/* ═══════════════════════════════════════════════
   MOBILE RESPONSIVE — comprehensive overrides
═══════════════════════════════════════════════ */

/* ── Tablet (≤ 992px) ── */
@media (max-width: 992px) {
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2874%2C55%2C40%2C0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  .navbar-collapse {
    background: rgba(250,248,244,0.98);
    padding: 12px 16px 20px;
    border-top: 1px solid var(--beige-mid);
  }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-badge { right: 0; bottom: -1rem; }
}

/* ── Mobile (≤ 768px) ── */
@media (max-width: 768px) {
  body { padding-top: 58px; }

  /* Navbar */
  .navbar-custom { padding: 4px 0; }
  .navbar-brand-text { font-size: 19px !important; letter-spacing: 1px !important; }
  .navbar-collapse .nav-link {
    padding: 10px 8px !important;
    font-size: 14px;
    border-bottom: 1px solid var(--beige-mid);
  }
  .navbar-collapse .dropdown-menu {
    box-shadow: none;
    border: none;
    background: var(--beige-lightest);
    margin-left: 12px;
  }

  /* Hero slider */
  .hero-slider { height: 75vh; min-height: 420px; }
  .hero-content { padding-bottom: 70px; padding-left: 16px; padding-right: 16px; }
  .slide-title { font-size: clamp(26px, 8vw, 46px); }
  .slide-tag { font-size: 9px; letter-spacing: 2px; }
  .hero-btn-group { flex-direction: column; align-items: center; gap: 8px; }
  .hero-btn-group .btn { width: 80%; max-width: 260px; font-size: 12px; padding: 10px 14px; }
  .slider-dots { bottom: 16px; }

  /* Feature strip */
  .feature-strip { padding: 20px 0; }
  .feature-item { flex-direction: column; gap: 5px; text-align: center; padding: 6px 4px; }
  .feature-item i { font-size: 16px; }
  .feature-item span { font-size: 9px; letter-spacing: 0.5px; line-height: 1.4; }

  /* About strip */
  .about-strip { padding: 50px 0 70px; }
  .about-img-main { height: 260px; }
  .about-img-badge { width: 88px; height: 88px; right: 8px; bottom: -10px; }
  .about-img-badge .num { font-size: 22px; }
  .about-img-badge .lbl { font-size: 7px; }
  .about-img-wrap { overflow: visible; }

  /* Stats — 2 col layout */
  .stat-row .col-4 { flex: 0 0 50%; max-width: 50%; }
  .stat-item .num { font-size: 28px; }
  .stat-item .lbl { font-size: 9px; letter-spacing: 1px; }
  .stat-row { margin-top: 20px; }

  /* Entry cards */
  .entry-section { padding: 56px 0 44px; }
  .entry-card { padding: 32px 20px 28px; }
  .card-title { font-size: 20px; }
  .card-text { font-size: 13px; }

  /* Sections */
  .section { padding: 3rem 1rem !important; }
  .section-sm { padding: 2rem 1rem !important; }
  .section-title { font-size: clamp(24px, 7vw, 38px) !important; }

  /* Grids */
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cat-label { font-size: 15px; }
  .cat-card-overlay { padding: 14px 12px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .designs-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* Stats band */
  .stats-band { padding: 0.8rem 1rem; }
  .stats-inner { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(212,175,96,0.15); padding: 0.7rem 0.4rem; }
  .stat-item:last-child { border-bottom: none; }
  .stat-number { font-size: 1.5rem; }
  .stat-label { font-size: 0.6rem; letter-spacing: 0.1em; }

  /* Testimonial */
  .testimonial-section { padding: 50px 16px; }
  .testimonial-text { font-size: clamp(17px, 5vw, 24px); padding: 0; }

  /* Footer */
  .footer-main { padding: 36px 0 16px; }
  .footer-brand { font-size: 20px; letter-spacing: 2px; }
  .footer-tagline { font-size: 12px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; font-size: 11px; }
  .footer-col-title { margin-top: 16px; }
  .social-link { width: 32px; height: 32px; font-size: 13px; }

  /* Contact */
  .contact-form-wrap { padding: 1.2rem 0.9rem; }
  .contact-grid { grid-template-columns: 1fr; }

  /* Filter tabs */
  .filter-tabs { flex-wrap: wrap; position: static; transform: none; left: auto; width: 100%; }
  .filter-tab { padding: 8px 12px; font-size: 10px; }
}

/* ── Small mobile (≤ 480px) ── */
@media (max-width: 480px) {
  body { padding-top: 52px; }
  .navbar-brand-text { font-size: 16px !important; letter-spacing: 0px !important; }
  .hero-slider { height: 68vh; min-height: 360px; }
  .slide-title { font-size: clamp(22px, 9vw, 34px); }
  .hero-btn-group .btn { width: 90%; max-width: 240px; }
  .cat-grid { grid-template-columns: 1fr; }
  .entry-card { padding: 26px 14px 22px; }
  .stat-row .col-4 { flex: 0 0 50%; max-width: 50%; }
  .stat-row > .col-4:last-child:nth-child(odd) { flex: 0 0 100%; max-width: 100%; }
  .section-title { font-size: clamp(20px, 8vw, 30px) !important; }
  .testimonial-text { font-size: clamp(16px, 5.5vw, 22px); }
  .footer-brand { font-size: 18px; }
  .feature-item span { font-size: 8px; }
  .footer-bottom { font-size: 10px; }
}

/*Door Css*/
/* ── DESIGN TOKENS ── */
   

    *, *::before, *::after { box-sizing: border-box; }

    body {
      margin: 0;
      background: var(--bg);
      font-family: 'Jost', sans-serif;
    }

    /* ── WRAPPER ── */
    .lp {
      position: relative;
      height: 100svh;
      min-height: 480px;
      max-height: 780px;
      overflow: hidden;
      background: var(--bg);
      color: var(--ink);
      user-select: none;
    }

    /* ── GRAIN OVERLAY ── */
    .lp::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 1;
    }

    /* ── TRACK + SLIDES ── */
    .lp-track {
      position: absolute;
      inset: 0;
      display: flex;
      transition: transform .85s cubic-bezier(.77,0,.175,1);
    }

    .lp-slide {
      position: relative;
      min-width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 2.5rem 1.5rem;
      overflow: hidden;
    }

    /* warm radial centre glow per slide */
    .s1 { background: radial-gradient(ellipse 80% 60% at 50% 55%, #EDE0C2 0%, #DDD0A8 100%); }
    .s2 { background: radial-gradient(ellipse 80% 60% at 50% 55%, #EAE0C8 0%, #D8CAAC 100%); }
    .s3 { background: radial-gradient(ellipse 80% 60% at 50% 55%, #F0E8D0 0%, #E0D4B0 100%); }

    /* corner brackets */
    .lp-slide::before, .lp-slide::after {
      content: '';
      position: absolute;
      width: 32px;
      height: 32px;
      border-color: var(--gold-d);
      border-style: solid;
      opacity: .35;
    }
    .lp-slide::before { top: 16px; left: 16px; border-width: 1px 0 0 1px; }
    .lp-slide::after  { bottom: 16px; right: 16px; border-width: 0 1px 1px 0; }

    /* decorative concentric ellipse ring */
    .slide-ring {
      position: absolute;
      width: min(420px, 90%);
      height: min(420px, 90%);
      border-radius: 50%;
      border: 1px solid rgba(180,140,60,.15);
      pointer-events: none;
    }
    .slide-ring.r2 {
      width: min(310px, 68%);
      height: min(310px, 68%);
      border-color: rgba(180,140,60,.22);
    }

    /* slide content */
    .s-tag {
      font-size: 10px;
      letter-spacing: .38em;
      color: var(--gold-d);
      text-transform: uppercase;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Jost', sans-serif;
      font-weight: 500;
    }
    .s-tag::before, .s-tag::after { content: ''; flex: 0 0 24px; height: 1px; background: var(--rule); }

    .s-h {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.9rem, 6vw, 3.2rem);
      font-weight: 600;
      line-height: 1.1;
      margin-bottom: .9rem;
      color: var(--ink);
    }
    .s-h em { color: var(--gold); font-style: italic; }

    .s-div { width: 52px; height: 1px; background: var(--rule); margin: 0 auto .9rem; }

    .s-p {
      font-size: .92rem;
      color: var(--muted);
      font-style: italic;
      max-width: 420px;
      line-height: 1.8;
      margin-bottom: 1.8rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(.95rem, 2.2vw, 1.08rem);
    }

    .s-btn {
      font-family: 'Jost', sans-serif;
      font-size: 10px;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--gold-d);
      border: 1px solid var(--gold-d);
      padding: .6rem 1.8rem;
      background: transparent;
      cursor: pointer;
      transition: background .25s, color .25s, border-color .25s;
      border-radius: 0;
    }
    .s-btn:hover { background: var(--gold); color: var(--cream); border-color: var(--gold); }

    /* ── DOTS ── */
    .lp-dots {
      position: absolute;
      bottom: 18px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
      z-index: 10;
    }
    .ld {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--rule);
      cursor: pointer; border: none; outline: none; padding: 0;
      transition: background .3s, transform .3s;
    }
    .ld.on { background: var(--gold); transform: scale(1.45); }

    /* ── ARROWS ── */
    .lp-arr {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      width: 40px; height: 40px;
      background: rgba(247,240,226,.7);
      border: 1px solid var(--rule);
      color: var(--gold-d);
      cursor: pointer;
      font-size: 15px;
      display: flex; align-items: center; justify-content: center;
      transition: border-color .25s, color .25s, background .25s;
      outline: none;
      border-radius: 0;
      backdrop-filter: blur(4px);
    }
    .lp-arr:hover { border-color: var(--gold); color: var(--gold); background: var(--cream); }
    .la { left: 12px; }
    .ra { right: 12px; }

    /* ── COUNTER ── */
    .lp-ct {
      position: absolute;
      bottom: 18px; right: 18px;
      font-size: 10px; letter-spacing: .22em;
      color: var(--muted);
      z-index: 10;
      font-family: 'Jost', sans-serif;
    }

    /* ── DOOR ── */
    .lp-door {
      position: absolute;
      inset: 0;
      z-index: 20;
      perspective: 2000px;
      perspective-origin: 50% 50%;
    }
    .lp-door.open  { pointer-events: none; }
    .lp-door.gone  { display: none; }

    .dp {
      position: absolute;
      top: 0; height: 100%; width: 50%;
      background: var(--door-bg);
      transform-style: preserve-3d;
      transition: transform 1.35s cubic-bezier(.76,0,.24,1);
      backface-visibility: hidden;
    }

    /* wood-grain simulation via layered gradients */
    .dl {
      left: 0;
      transform-origin: left center;
      border-right: 1px solid var(--door-dark);
      background:
        repeating-linear-gradient(92deg,rgba(140,100,40,.04) 0px,rgba(140,100,40,.04) 1px,transparent 1px,transparent 18px),
        linear-gradient(180deg, #dec9a8 0%, #dec9a8 40%, #FDFdFd 70%, #dec9a8 100%);
    }
    .dr {
      right: 0;
      transform-origin: right center;
      border-left: 1px solid var(--door-dark);
      background:
        repeating-linear-gradient(92deg,rgba(140,100,40,.04) 0px,rgba(140,100,40,.04) 1px,transparent 1px,transparent 18px),
        linear-gradient(180deg, #dec9a8 0%, #dec9a8 40%, #FDFdFd 70%, #dec9a8 100%);
    }

    .lp-door.open .dl { transform: rotateY(-110deg); }
    .lp-door.open .dr { transform: rotateY(110deg); }

    /* door panel inset border */
    .dp::after {
      content: '';
      position: absolute;
      inset: 12px;
      border: 1px solid rgba(160,120,50,.22);
    }

    /* door panels */
    .dp-i {
      position: absolute;
      border: 1px solid rgba(140,100,40,.2);
      background: rgba(255,248,220,.18);
    }
    .dl .dp-i { left: 10%; right: 8%; }
    .dr .dp-i { left: 8%; right: 10%; }
    .di-t { top: 7%; height: 18%; }
    .di-b { bottom: 7%; height: 46%; }

    /* handles */
    .dh {
      position: absolute;
      top: 50%; transform: translateY(-50%);
      width: 7px; height: 48px;
      background: linear-gradient(180deg, #B8900A 0%, #D4AF37 45%, #A07820 100%);
      border-radius: 3px;
      box-shadow: 0 2px 6px rgba(0,0,0,.15);
    }
    .dl .dh { right: 12px; }
    .dr .dh { left: 12px; }

    .dk {
      position: absolute;
      width: 12px; height: 12px;
      background: radial-gradient(circle at 35% 35%, #E8C84A, #A07820);
      border-radius: 50%;
      top: 50%; transform: translateY(-50%);
      box-shadow: 0 1px 4px rgba(0,0,0,.2);
    }
    .dl .dk { right: -2px; }
    .dr .dk { left: -2px; }

    /* seam */
    .lp-seam {
      position: absolute;
      top: 0; bottom: 0; left: 50%;
      width: 1px;
      background: linear-gradient(180deg, transparent 0%, var(--seam) 20%, var(--seam) 80%, transparent 100%);
      z-index: 21;
      transition: opacity .3s;
    }

    /* ── CAPTION / ENTER SCREEN ── */
    .lp-cap {
      position: absolute;
      inset: 0; z-index: 22;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center;
      pointer-events: none;
      transition: opacity .75s;
    }
    .lp-cap.hide { opacity: 0; }

    .c-eye {
      font-size: 10px; letter-spacing: .55em; text-transform: uppercase;
      color: var(--gold-d); margin-bottom: .8rem;
      font-family: 'Jost', sans-serif;
      animation: fsd 1s .3s both;
    }
    .c-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.7rem, 5vw, 2.8rem);
      font-weight: 600;
      color: var(--ink);
      line-height: 1.1; margin-bottom: .4rem;
      animation: fsd 1s .5s both;
    }
    .c-sub {
      font-size: .95rem; color: var(--muted);
      font-style: italic;
      font-family: 'Cormorant Garamond', serif;
      margin-bottom: 2rem;
      animation: fsd 1s .7s both;
    }
    .c-rule {
      width: 64px; height: 1px;
      background: var(--rule);
      margin: 0 auto 2rem;
      animation: fi 1.2s .9s both;
    }

    /* Enter button */
    .e-btn {
      pointer-events: auto;
      cursor: pointer;
      background: transparent; border: none; outline: none;
      display: flex; flex-direction: column;
      align-items: center; gap: 10px;
      animation: fsu 1s 1s both;
    }
    .e-ring {
      width: 68px; height: 68px; border-radius: 50%;
      border: 1px solid var(--gold-d);
      display: flex; align-items: center; justify-content: center;
      position: relative;
      background: rgba(247,240,226,.6);
      transition: border-color .3s, background .3s;
      backdrop-filter: blur(4px);
    }
    .e-ring::before {
      content: '';
      position: absolute; inset: -7px; border-radius: 50%;
      border: 1px solid rgba(180,140,60,0);
      animation: pulse 2.3s ease-in-out infinite;
    }
    .e-ring::after {
      content: '';
      position: absolute; inset: -14px; border-radius: 50%;
      border: 1px solid rgba(180,140,60,0);
      animation: pulse 2.3s .55s ease-in-out infinite;
    }
    .e-btn:hover .e-ring {
      border-color: var(--gold);
      background: rgba(212,168,75,.12);
    }
    .e-tri {
      width: 0; height: 0;
      border-top: 8px solid transparent;
      border-bottom: 8px solid transparent;
      border-left: 14px solid var(--gold);
      margin-left: 4px;
    }
    .e-lbl {
      font-size: 10px; letter-spacing: .45em; text-transform: uppercase;
      color: var(--gold-d);
      font-family: 'Jost', sans-serif;
      transition: color .3s;
    }
    .e-btn:hover .e-lbl { color: var(--gold); }

    /* ── KEYFRAMES ── */
    @keyframes fsd { from { opacity:0; transform:translateY(-12px); } to { opacity:1; transform:none; } }
    @keyframes fsu { from { opacity:0; transform:translateY(12px);  } to { opacity:1; transform:none; } }
    @keyframes fi  { from { opacity:0; } to { opacity:1; } }
    @keyframes pulse {
      0%   { border-color:rgba(180,140,60,0);  transform:scale(1);    }
      50%  { border-color:rgba(180,140,60,.45);                        }
      100% { border-color:rgba(180,140,60,0);  transform:scale(1.22); }
    }

    /* ── MOBILE TWEAKS (Bootstrap-supplemented) ── */
    @media (max-width: 576px) {
      .lp { max-height: none; height: 100svh; }
      .s-p { font-size: .9rem; }
      .lp-arr { width: 36px; height: 36px; font-size: 13px; }
    }
/*Door Css*/
/*cards Css*/
:root {
      --espresso:     #0e0a06;
      --roast-deep:   #1a1208;
      --roast-mid:    #261a0d;
      --roast-light:  #3a2610;
      --cream:        #f5ead8;
      --cream-dim:    #c9b899;
      --cream-muted:  #7a6a55;
      --gold-bright:  #e8c76a;
      --gold-mid:     #c9a84c;
      --gold-deep:    #8b6820;
      --gold-glow:    rgba(201,168,76,0.35);
      --gold-shimmer: linear-gradient(135deg, #b8892a 0%, #f0d080 30%, #c9a84c 50%, #f0d080 70%, #b8892a 100%);
      --amber:        #d4831a;
      --card-bg:      #1c1208;
      --border-w:     2px;
    }

    *, *::before, *::after { box-sizing: border-box; }

    

    /* ── Hero header ── */
    .site-hero {
      text-align: center;
      padding: 72px 20px 52px;
      position: relative;
    }
    .site-hero::before {
      content: '';
      position: absolute;
      top: 0; left: 50%; transform: translateX(-50%);
      width: 1px; height: 52px;
      background: linear-gradient(to bottom, transparent, var(--gold-mid));
    }
    .hero-eyebrow {
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--gold-mid);
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
    }
    .hero-eyebrow::before,
    .hero-eyebrow::after {
      content: '';
      display: block;
      width: 48px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold-deep));
    }
    .hero-eyebrow::after {
      background: linear-gradient(90deg, var(--gold-deep), transparent);
    }

    .site-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(42px, 7vw, 76px);
      font-weight: 300;
      letter-spacing: -1px;
      color: var(--cream);
      line-height: 1;
      margin-bottom: 10px;
    }
    .site-title em {
      font-style: italic;
      background: var(--gold-shimmer);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: shimmer 4s linear infinite;
    }
    @keyframes shimmer {
      to { background-position: 200% center; }
    }

    .site-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-size: 16px;
      font-style: italic;
      color: var(--cream-muted);
      margin-top: 12px;
      letter-spacing: 0.5px;
    }

    .hero-divider {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      margin: 32px auto 0;
      width: fit-content;
    }
    .hero-divider span {
      font-size: 18px;
      color: var(--gold-mid);
      opacity: 0.7;
    }
    .hero-divider::before,
    .hero-divider::after {
      content: '';
      display: block;
      width: 80px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold-deep));
    }
    .hero-divider::after {
      background: linear-gradient(90deg, var(--gold-deep), transparent);
    }

    /* ── Card grid ── */
    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
      gap: 32px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ── The Coffee Card ── */
    .coffee-card {
      position: relative;
      background: var(--card-bg);
      border-radius: 4px;
      overflow: visible;
      cursor: pointer;
      opacity: 0;
      transform: translateY(28px);
      animation: cardReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }
    .coffee-card:nth-child(1) { animation-delay: 0.05s; }
    .coffee-card:nth-child(2) { animation-delay: 0.15s; }
    .coffee-card:nth-child(3) { animation-delay: 0.25s; }
    .coffee-card:nth-child(4) { animation-delay: 0.35s; }
    .coffee-card:nth-child(5) { animation-delay: 0.45s; }
    .coffee-card:nth-child(6) { animation-delay: 0.55s; }

    @keyframes cardReveal {
      to { opacity: 1; transform: translateY(0); }
    }

    /* Golden border frame */
    .coffee-card::before {
      content: '';
      position: absolute;
      inset: -2px;
      border-radius: 6px;
      padding: 2px;
      background: var(--gold-shimmer);
      background-size: 300% auto;
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
      z-index: 1;
      animation: borderShimmer 6s linear infinite;
    }
    @keyframes borderShimmer {
      to { background-position: 300% center; }
    }

    /* Outer glow */
    .coffee-card::after {
      content: '';
      position: absolute;
      inset: -6px;
      border-radius: 10px;
      background: transparent;
      box-shadow: 0 0 0 0 var(--gold-glow);
      transition: box-shadow 0.4s ease;
      pointer-events: none;
      z-index: 0;
    }
    .coffee-card:hover::after {
      box-shadow: 0 0 28px 6px var(--gold-glow), 0 24px 48px rgba(0,0,0,0.6);
    }

    .coffee-card:hover {
      transform: translateY(-6px) scale(1.01);
      transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .coffee-card:not(:hover) {
      transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    /* Inner card container */
    .card-inner {
      position: relative;
      z-index: 2;
      border-radius: 4px;
      overflow: hidden;
      background: var(--card-bg);
    }

    /* Corner ornaments */
    .corner {
      position: absolute;
      width: 22px;
      height: 22px;
      z-index: 10;
      pointer-events: none;
    }
    .corner svg { width: 100%; height: 100%; }
    .corner-tl { top: -1px; left: -1px; }
    .corner-tr { top: -1px; right: -1px; transform: scaleX(-1); }
    .corner-bl { bottom: -1px; left: -1px; transform: scaleY(-1); }
    .corner-br { bottom: -1px; right: -1px; transform: scale(-1); }

    /* Image container */
    .card-img-wrap {
      position: relative;
      overflow: hidden;
      height: 220px;
    }
    .card-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
      filter: brightness(0.88) saturate(1.1);
    }
    .coffee-card:hover .card-img-wrap img {
      transform: scale(1.07);
      filter: brightness(0.78) saturate(1.2);
    }

    /* Warm overlay on image */
    .card-img-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        transparent 40%,
        rgba(14,10,6,0.7) 100%
      );
      pointer-events: none;
      z-index: 1;
    }

    /* Badge on image */
    .card-badge {
      position: absolute;
      top: 14px;
      right: 14px;
      z-index: 3;
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--espresso);
      background: var(--gold-shimmer);
      background-size: 200% auto;
      padding: 4px 10px;
      border-radius: 2px;
      animation: shimmer 4s linear infinite;
    }

    /* Price tag on image */
    .card-price-tag {
      position: absolute;
      bottom: 14px;
      left: 14px;
      z-index: 3;
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 600;
      color: var(--gold-bright);
      text-shadow: 0 2px 8px rgba(0,0,0,0.5);
      line-height: 1;
    }
    .card-price-tag small {
      font-size: 12px;
      font-weight: 300;
      opacity: 0.75;
      vertical-align: super;
      margin-right: 2px;
    }

    /* Card body */
    .card-body-inner {
      padding: 20px 22px 22px;
      position: relative;
    }

    .card-origin {
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold-mid);
      margin-bottom: 6px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .card-origin::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, var(--gold-deep), transparent);
    }

    .card-title-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 600;
      color: var(--cream);
      line-height: 1.2;
      margin-bottom: 8px;
      letter-spacing: -0.3px;
    }

    .card-desc {
      font-family: 'Libre Baskerville', serif;
      font-size: 12px;
      color: var(--cream-muted);
      line-height: 1.7;
      margin-bottom: 16px;
    }

    /* Flavor tags */
    .card-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 18px;
    }
    .ctag {
      font-family: 'Cinzel', serif;
      font-size: 8.5px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--gold-deep);
      border: 1px solid var(--gold-deep);
      padding: 3px 9px;
      border-radius: 20px;
      opacity: 0.85;
      transition: all 0.2s;
    }
    .coffee-card:hover .ctag {
      color: var(--gold-bright);
      border-color: var(--gold-mid);
      opacity: 1;
    }

    /* Roast bar */
    .roast-row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
    }
    .roast-label {
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: 1.5px;
      color: var(--cream-muted);
      text-transform: uppercase;
      width: 44px;
      flex-shrink: 0;
    }
    .roast-track {
      flex: 1;
      height: 4px;
      background: var(--roast-mid);
      border-radius: 2px;
      overflow: hidden;
    }
    .roast-fill {
      height: 100%;
      border-radius: 2px;
      background: var(--gold-shimmer);
      background-size: 200% auto;
      animation: shimmer 3s linear infinite;
      transition: width 0.6s ease;
    }

    /* CTA button */
    .card-btn {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 11px 18px;
      background: transparent;
      border: 1px solid var(--gold-deep);
      border-radius: 3px;
      color: var(--gold-mid);
      font-family: 'Cinzel', serif;
      font-size: 10px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: color 0.3s, border-color 0.3s;
    }
    .card-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--gold-shimmer);
      background-size: 300% auto;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
      animation: shimmer 4s linear infinite;
    }
    .card-btn:hover::before { transform: scaleX(1); }
    .card-btn:hover { color: var(--espresso); border-color: transparent; }
    .card-btn span, .card-btn svg { position: relative; z-index: 1; }

    /* Rating stars */
    .card-rating {
      display: flex;
      align-items: center;
      gap: 3px;
    }
    .star {
      font-size: 11px;
      color: var(--gold-deep);
    }
    .star.lit { color: var(--gold-bright); }
    .rating-num {
      font-family: 'Cinzel', serif;
      font-size: 10px;
      color: var(--cream-muted);
      margin-left: 4px;
    }

    /* Bottom meta row */
    .card-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 16px;
    }

    /* ── Section label ── */
    .section-label {
      text-align: center;
      margin: 0 auto 40px;
      padding-top: 8px;
    }
    .section-label h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 13px;
      font-weight: 400;
      font-style: italic;
      color: var(--cream-muted);
      letter-spacing: 1px;
    }

    /* ── Footer ── */
    .site-footer {
      text-align: center;
      padding: 40px 20px 0;
      font-family: 'Cinzel', serif;
      font-size: 9px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--cream-muted);
      opacity: 0.45;
    }

    /* Responsive */
    @media (max-width: 600px) {
      .card-grid { grid-template-columns: 1fr; padding: 0 16px; }
    }
/*cards Css*/




