:root {
  --black: #050508;
  --charcoal: #101015;
  --royal: #071a4b;
  --royal-bright: #0d47a1;
  --gold: #f8c85a;
  --hot-gold: #fff0a6;
  --muted: #b7bccb;
  --line: rgba(248, 200, 90, 0.22);
  --glass: rgba(12, 16, 28, 0.74);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #fff8df;
  background:
    radial-gradient(circle at 18% 8%, rgba(13, 71, 161, 0.45), transparent 34rem),
    radial-gradient(circle at 78% 20%, rgba(248, 200, 90, 0.18), transparent 30rem),
    linear-gradient(135deg, #030306 0%, #0b0e17 44%, #050507 100%);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  content: "";
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at center, #000, transparent 78%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

/* ==========================================
   CINEMATIC INTRO SCREEN SYSTEM (DARK DEVOTIONAL AESTHETIC)
   ========================================== */
.intro {
  position: fixed;
  inset: 0;
  z-index: 9999; /* Ensure it stays completely on top */
  display: grid;
  place-items: center;
  background: #000000; /* Starts pitch black */
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transition: background 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s ease;
}

/* Exit Transition: Seamless fly-to-navbar transition */
.intro.is-entering {
  background: transparent; /* Fade out background to reveal store below! */
  opacity: 0; /* Fade out completely and quickly! */
  visibility: hidden;
  pointer-events: none; /* Make website clickable immediately */
  transition: background 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s ease;
}

.intro.is-entering .intro-lockup {
  transform: translate(-36vw, -42vh) scale(0.16); /* Monogram flies and shrinks beautifully to top-left brand! */
  opacity: 0; /* Dissolve as it merges into the navbar brand */
  filter: blur(4px);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1), filter 0.6s ease;
}

.intro.is-entering .grain-overlay {
  opacity: 0;
  transition: opacity 1s ease;
}

/* Cinematic Grain/Noise Overlay */
.grain-overlay {
  position: absolute;
  inset: -100px;
  width: calc(100% + 200px);
  height: calc(100% + 200px);
  z-index: 3;
  opacity: 0.05;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  animation: grainDrift 8s steps(8) infinite;
}

@keyframes grainDrift {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-2%, -2%); }
  30% { transform: translate(1%, 2%); }
  50% { transform: translate(-1%, -3%); }
  70% { transform: translate(3%, 1%); }
  90% { transform: translate(-2%, 3%); }
}

/* Layered Radial Ambient glows for temple depth */
.intro-glow-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 50% 50%, rgba(199, 142, 58, 0.08) 0%, rgba(6, 4, 3, 0.72) 65%, #000000 100%);
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.stage-0 .intro-glow-bg,
.stage-1 .intro-glow-bg,
.stage-2 .intro-glow-bg,
.stage-3 .intro-glow-bg,
.stage-4 .intro-glow-bg,
.stage-final .intro-glow-bg {
  opacity: 1;
}

.intro-sparkle-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(90vw, 750px);
  height: min(90vw, 750px);
  z-index: 2;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248, 200, 90, 0.16) 0%, transparent 68%);
  opacity: 0;
  filter: blur(15px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s ease;
  pointer-events: none;
}

.stage-2 .intro-sparkle-glow,
.stage-3 .intro-sparkle-glow {
  opacity: 0.75;
  transform: translate(-50%, -50%) scale(1.08);
}

.stage-4 .intro-sparkle-glow,
.stage-final .intro-sparkle-glow {
  opacity: 0.95;
  transform: translate(-50%, -50%) scale(1.25);
  background: radial-gradient(circle, rgba(248, 200, 90, 0.22) 0%, rgba(199, 142, 58, 0.06) 45%, transparent 70%);
}

/* 60fps Particles Canvas */
#introCanvas {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Lockup Layout */
.intro-lockup {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column; /* Stacked layout matching logo.jpeg exactly */
  align-items: center;
  justify-content: center;
  gap: 12px; /* Reduced gap between elements */
  width: min(88vw, 1000px);
  min-height: 380px; /* Reduced min-height to pull elements tighter */
  pointer-events: none;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Center Logo Wrapper */
.intro-logo-wrapper {
  flex: 0 0 170px; /* Greatly reduced flex-basis height to pull text closer */
  width: 212px;
  height: 170px;
  opacity: 0;
  transform: translateY(-80px); /* Slides down from top instead of left for a more graceful stacked flow! */
  filter: blur(12px);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}

.stage-1 .intro-logo-wrapper,
.stage-2 .intro-logo-wrapper,
.stage-3 .intro-logo-wrapper,
.stage-4 .intro-logo-wrapper,
.stage-final .intro-logo-wrapper {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

.intro-logo-mark {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: filter 2.5s ease;
}

.morpankh-svg {
  width: 100%;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
  transition: filter 2s ease;
}

/* Monogram Thread-weaving drawing animation matching logo.jpeg */
.g-thread,
.v-thread {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  transition: stroke-dashoffset 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.stage-1 .g-thread, .stage-1 .v-thread,
.stage-2 .g-thread, .stage-2 .v-thread,
.stage-3 .g-thread, .stage-3 .v-thread,
.stage-4 .g-thread, .stage-4 .v-thread,
.stage-final .g-thread, .stage-final .v-thread {
  stroke-dashoffset: 0;
}

/* Warm Golden Glow Bloom on Logo Mark */
.stage-2 .morpankh-svg,
.stage-3 .morpankh-svg,
.stage-4 .morpankh-svg,
.stage-final .morpankh-svg {
  filter: drop-shadow(0 0 15px rgba(248, 200, 90, 0.32)) drop-shadow(0 0 35px rgba(199, 142, 58, 0.16)) drop-shadow(0 8px 24px rgba(0,0,0,0.7));
}

/* Morpankh Soft Unfolding of Barbs */
.left-barbs path,
.right-barbs path {
  transform-origin: 200px 155px;
  transform: scale(0.4) rotate(0deg);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}

.stage-3 .left-barbs path,
.stage-3 .right-barbs path,
.stage-4 .left-barbs path,
.stage-4 .right-barbs path,
.stage-final .left-barbs path,
.stage-final .right-barbs path {
  transform: scale(1) rotate(0deg);
  opacity: 0.75;
}

/* Sequential Barb Unfolding Delays for Wave Effect */
.left-barbs path:nth-child(1), .right-barbs path:nth-child(1) { transition-delay: 0.02s; }
.left-barbs path:nth-child(2), .right-barbs path:nth-child(2) { transition-delay: 0.04s; }
.left-barbs path:nth-child(3), .right-barbs path:nth-child(3) { transition-delay: 0.06s; }
.left-barbs path:nth-child(4), .right-barbs path:nth-child(4) { transition-delay: 0.08s; }
.left-barbs path:nth-child(5), .right-barbs path:nth-child(5) { transition-delay: 0.10s; }
.left-barbs path:nth-child(6), .right-barbs path:nth-child(6) { transition-delay: 0.12s; }
.left-barbs path:nth-child(7), .right-barbs path:nth-child(7) { transition-delay: 0.14s; }

/* Peacock Feather Eye Unfolding */
.feather-eye-group {
  transform-origin: 250px 72px;
  transform: scale(0.5);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
  transition-delay: 0.1s;
}

.stage-3 .feather-eye-group,
.stage-4 .feather-eye-group,
.stage-final .feather-eye-group {
  transform: scale(1);
  opacity: 1;
}

/* Subtle Shimmer in Feather Details (Shine Pass) */
.feather-eye-oval {
  transition: filter 1.5s ease;
}

.stage-3 .feather-eye-oval,
.stage-4 .feather-eye-oval,
.stage-final .feather-eye-oval {
  filter: drop-shadow(0 0 16px rgba(44, 157, 166, 0.58)) drop-shadow(0 0 4px rgba(255, 230, 150, 0.3));
}

/* Continuous Soft Air Sway (triggered in stage-3) */
.feather-group {
  transform-origin: 200px 155px;
}

.stage-3 .feather-group,
.stage-4 .feather-group,
.stage-final .feather-group {
  animation: featherSwaySoft 7.2s ease-in-out infinite alternate;
  animation-delay: 1.8s; /* Start swaying after bloom finishes */
}

@keyframes featherSwaySoft {
  0% { transform: rotate(-1deg) translateY(0); }
  100% { transform: rotate(1.5deg) translateY(-2px); }
}

/* Flute (Bansuri) details */
.flute-group {
  transform-origin: 100px 198px;
  opacity: 0.85;
}

.stage-2 .flute-group,
.stage-3 .flute-group,
.stage-4 .flute-group,
.stage-final .flute-group {
  opacity: 1;
}

.tassel-string {
  transform-origin: 35px 201px;
}

.tassel-string:last-of-type {
  transform-origin: 165px 201px;
}

.stage-3 .tassel-string,
.stage-4 .tassel-string,
.stage-final .tassel-string {
  animation: tasselSway 4s ease-in-out infinite alternate;
}

@keyframes tasselSway {
  0% { transform: rotate(-6deg); }
  100% { transform: rotate(6deg); }
}

/* Centered Stacked Component: Text */
.intro-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* Center align! */
  opacity: 0;
  transform: translateY(80px); /* Slides up from bottom */
  filter: blur(12px);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}

.stage-1 .intro-text-wrapper,
.stage-2 .intro-text-wrapper,
.stage-3 .intro-text-wrapper,
.stage-4 .intro-text-wrapper,
.stage-final .intro-text-wrapper {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Deluxe Text Gradients and Shines */
.intro-brand-name {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.brand-title-line {
  font-family: 'Cormorant Garamond', Georgia, serif; /* Graceful serif font with beautiful lowercase letters matching logo.jpeg */
  font-size: clamp(2.1rem, 5.2vw, 4.5rem); /* Proportional scaling for Cormorant Garamond */
  font-weight: 500; /* Medium-light weight for elegant serif styling */
  line-height: 1.05;
  letter-spacing: 0.04em; /* Classy gold serif letter spacing */
  background: linear-gradient(110deg, #ffe8a3 30%, #ffffff 50%, #ffe8a3 70%);
  background-size: 200% 100%;
  background-position: 180% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.8));
  transition: text-shadow 0.8s ease, filter 0.8s ease;
}

/* Warm golden temple glow bloom on text */
.stage-2 .brand-title-line,
.stage-3 .brand-title-line,
.stage-4 .brand-title-line,
.stage-final .brand-title-line {
  filter: drop-shadow(0 0 12px rgba(248, 200, 90, 0.38)) drop-shadow(0 0 28px rgba(199, 142, 58, 0.16)) drop-shadow(0 2px 4px rgba(0,0,0,0.8));
}

/* Delicate Gold Thread Divider */
.intro-divider {
  width: 100%;
  max-width: 520px; /* Constrain divider for a balanced look */
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.45), transparent);
  margin: 10px 0; /* Reduced margin to bring title and tagline closer */
  transform: scaleX(0);
  transform-origin: center center; /* Grows outward from center! */
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.stage-2 .intro-divider,
.stage-3 .intro-divider,
.stage-4 .intro-divider,
.stage-final .intro-divider {
  transform: scaleX(1);
}

/* Tagline elegant reveal */
.intro-tagline {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: clamp(0.8rem, 1.4vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  color: #e5cc95;
  opacity: 0;
  transform: translateY(12px);
  filter: blur(3px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}

.stage-1 .intro-tagline,
.stage-2 .intro-tagline,
.stage-3 .intro-tagline,
.stage-4 .intro-tagline,
.stage-final .intro-tagline {
  opacity: 0.88;
  transform: translateY(0);
  filter: blur(0);
}

/* STEP 4: Cinematic Light Sweep Pass */
.stage-4 .brand-title-line,
.stage-4 .brand-subtitle-line {
  animation: cinematicSweep 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes cinematicSweep {
  0% { background-position: 180% 0; }
  100% { background-position: -80% 0; }
}

/* Skip Button (Top Right corner) */
.intro-skip-btn {
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 10;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.28);
  color: rgba(244, 206, 122, 0.65);
  font-family: Inter, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  outline: none;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Reveal skip button after 1.8s */
.stage-1 .intro-skip-btn,
.stage-2 .intro-skip-btn,
.stage-3 .intro-skip-btn,
.stage-4 .intro-skip-btn,
.stage-final .intro-skip-btn {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.intro-skip-btn:hover {
  border-color: rgba(212, 175, 55, 0.88);
  color: rgba(255, 255, 255, 0.95);
  background: rgba(212, 175, 55, 0.05);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.16);
}

/* Luxurious Enter Button (Centered bottom) */
.intro-enter-btn {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%) translateY(22px);
  z-index: 10;
  background: rgba(8, 7, 5, 0.65);
  border: 1px solid rgba(212, 175, 55, 0.42);
  color: #f4ce7a;
  font-family: Cinzel, serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 13px 36px;
  border-radius: 2px;
  cursor: pointer;
  outline: none;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.07);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s ease, border-color 0.4s, box-shadow 0.4s, color 0.4s, letter-spacing 0.4s;
}

.stage-final .intro-enter-btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.intro-enter-btn:hover {
  border-color: rgba(212, 175, 55, 0.9);
  color: #ffffff;
  letter-spacing: 0.25em;
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.25), inset 0 0 12px rgba(212, 175, 55, 0.12);
}

.intro-enter-btn:active {
  transform: translateX(-50%) scale(0.97);
}

.site-shell {
  min-height: 100vh;
  opacity: 0;
  transition: opacity 1.8s ease;
}

body.stage-active .site-shell {
  opacity: 1;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 62px);
  background: linear-gradient(180deg, rgba(5,5,8,0.86), transparent);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

body.stage-active .nav {
  opacity: 1;
  transform: translateY(0);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-family: Cinzel, serif;
  font-size: clamp(0.82rem, 1.8vw, 1.02rem);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0s;
}

body.stage-active .brand {
  opacity: 1;
  transition-delay: 0.4s; /* Staggered delay: waits for the faster flying logo to dissolve completely, ensuring a glitch-free hand-off! */
}

.brand img {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 24px rgba(248, 200, 90, 0.28);
}

.nav nav {
  display: flex;
  gap: clamp(12px, 3vw, 34px);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav a {
  transition: color 200ms ease, text-shadow 200ms ease;
}

.nav a:hover {
  color: var(--hot-gold);
  text-shadow: 0 0 18px rgba(248, 200, 90, 0.95);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  align-items: center;
  min-height: 100vh;
  padding: 118px clamp(18px, 5vw, 76px) 56px;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  right: -8vw;
  bottom: -8vh;
  z-index: -2;
  width: min(52vw, 720px);
  aspect-ratio: 1;
  content: "";
  background: radial-gradient(circle, rgba(248,200,90,0.17), transparent 64%);
  filter: blur(8px);
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Cinzel, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(3.15rem, 8vw, 7.6rem);
  line-height: 0.92;
  text-shadow: 0 0 36px rgba(13, 71, 161, 0.5);
}

.hero-text {
  max-width: 620px;
  margin: 26px 0 0;
  color: #d7d9e2;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.8;
}

.hero-actions,
.visit {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.primary-btn,
.ghost-btn {
  position: relative;
  display: inline-grid;
  place-items: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 4px;
  border: 1px solid rgba(248, 200, 90, 0.5);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  overflow: hidden;
  text-transform: uppercase;
}

.primary-btn {
  color: #130d02;
  background: linear-gradient(135deg, #fff2a8, #f5b633 45%, #8e5e0e);
  box-shadow: 0 0 32px rgba(248, 200, 90, 0.38);
}

.ghost-btn {
  color: #ffe9a0;
  background: rgba(255,255,255,0.03);
}

.primary-btn::after,
.ghost-btn::after,
.product-card::after {
  position: absolute;
  inset: -40%;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 239, 166, 0.42), transparent 20%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.primary-btn:hover::after,
.ghost-btn:hover::after,
.product-card:hover::after {
  opacity: 1;
}

.monogram-stage {
  position: relative;
  min-height: min(68vw, 720px);
  perspective: 1100px;
  transform-style: preserve-3d;
}

.gv-monogram {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%) rotateY(-14deg) rotateX(9deg);
  font-family: Cinzel, serif;
  font-size: clamp(7rem, 20vw, 19rem);
  font-weight: 700;
  color: #ffdd78;
  text-shadow:
    0 1px 0 #7e5208,
    0 7px 0 #4b3208,
    0 22px 30px rgba(0,0,0,0.68),
    0 0 30px rgba(248,200,90,0.88),
    0 0 90px rgba(13,71,161,0.8);
  animation: monogramFloat 5s ease-in-out infinite;
}

.silk-thread {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(56vw, 760px);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,241,174,0.9), transparent);
  box-shadow: 0 0 18px rgba(248, 200, 90, 0.86);
  transform-origin: left center;
}

.thread-a { transform: rotate(-22deg) translateX(-42%); animation: threadWave 4.6s ease-in-out infinite; }
.thread-b { transform: rotate(16deg) translateX(-46%); animation: threadWave 5.8s ease-in-out infinite reverse; }
.thread-c { transform: rotate(52deg) translateX(-38%); animation: threadWave 6.2s ease-in-out infinite; }

.fabric {
  position: absolute;
  z-index: -1;
  width: clamp(170px, 22vw, 330px);
  aspect-ratio: 1.9 / 1;
  border-radius: 48% 52% 45% 55% / 45% 62% 38% 55%;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.16), transparent 18%),
    linear-gradient(110deg, rgba(11,64,150,0.82), rgba(10,12,28,0.62) 45%, rgba(248,200,90,0.32));
  filter: drop-shadow(0 28px 44px rgba(0,0,0,0.56));
  transform-style: preserve-3d;
  animation: fabricDrift 9s ease-in-out infinite;
}

.fabric::before {
  position: absolute;
  inset: 12% 0;
  content: "";
  background: repeating-linear-gradient(90deg, transparent 0 18px, rgba(255,255,255,0.09) 19px 20px);
  transform: skewY(-9deg);
}

.fabric-one { top: 16%; right: 7%; transform: rotate(-14deg); }
.fabric-two { left: 4%; bottom: 10%; animation-delay: -2s; }
.fabric-three { right: 30%; bottom: 4%; width: clamp(130px, 18vw, 250px); animation-delay: -4s; }

.craft-band,
.collection,
.visit {
  padding: 72px clamp(18px, 5vw, 76px);
}

.craft-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
  gap: 28px;
  align-items: end;
  border-block: 1px solid rgba(248, 200, 90, 0.18);
  background: linear-gradient(90deg, rgba(7,26,75,0.6), rgba(5,5,8,0.42), rgba(248,200,90,0.08));
}

.craft-band h2,
.section-heading h2,
.visit h2 {
  font-size: clamp(2rem, 4.6vw, 4.2rem);
  line-height: 1.03;
}

.craft-band p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  perspective: 1200px;
}

.product-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid rgba(248, 200, 90, 0.2);
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(16,16,21,0.86), rgba(7,26,75,0.48));
  box-shadow: 0 20px 46px rgba(0,0,0,0.32);
  transform: translateY(var(--lift, 0)) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.product-card:hover {
  border-color: rgba(255, 230, 149, 0.66);
  box-shadow: 0 26px 58px rgba(0,0,0,0.46), 0 0 30px rgba(248, 200, 90, 0.16);
}

.product-image {
  aspect-ratio: 4 / 4.8;
  overflow: hidden;
  background: #08090d;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease, filter 600ms ease;
}

.product-card:hover img {
  filter: saturate(1.12) contrast(1.05);
  transform: scale(1.06);
}

.product-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.product-number {
  width: max-content;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-content h3 {
  min-height: 52px;
  color: #fff0b4;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.25;
}

.product-content p {
  margin: 12px 0 14px;
  color: #d2d5df;
  font-size: 0.86rem;
  line-height: 1.58;
}

.product-content ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: auto 0 0;
  color: #f0dfac;
  font-size: 0.78rem;
  line-height: 1.38;
  list-style: none;
}

.product-content li {
  padding-left: 14px;
  border-left: 2px solid rgba(248, 200, 90, 0.52);
}

.visit {
  display: grid;
  min-height: 48vh;
  align-content: center;
  justify-items: start;
  background:
    linear-gradient(110deg, rgba(5,5,8,0.95), rgba(7,26,75,0.76)),
    radial-gradient(circle at 80% 40%, rgba(248,200,90,0.2), transparent 32rem);
}

.visit .primary-btn {
  margin-top: 28px;
}

/* Legacy keyframes removed */

@keyframes monogramFloat {
  0%, 100% { transform: translate(-50%, -50%) rotateY(-14deg) rotateX(9deg) translateY(0); }
  50% { transform: translate(-50%, -50%) rotateY(12deg) rotateX(-4deg) translateY(-18px); }
}

@keyframes threadWave {
  0%, 100% { opacity: 0.62; filter: blur(0); }
  50% { opacity: 1; filter: blur(1px); }
}

@keyframes fabricDrift {
  0%, 100% { translate: 0 0; rotate: -4deg; }
  50% { translate: 18px -22px; rotate: 7deg; }
}

@media (max-width: 1180px) {
  .cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    gap: 12px;
  }

  .nav nav {
    gap: 12px;
    font-size: 0.68rem;
  }

  .hero,
  .craft-band {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 132px;
  }

  .monogram-stage {
    min-height: 410px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading {
    display: block;
  }
}

@media (max-width: 560px) {
  .nav {
    position: absolute;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .nav nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .product-content h3 {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Boutique ivory theme inspired by the supplied storefront reference. */
:root {
  --black: #2f2117;
  --charcoal: #fff7eb;
  --royal: #7d5428;
  --royal-bright: #b9863e;
  --gold: #b9812f;
  --hot-gold: #e1b45f;
  --muted: #7f6d5a;
  --line: rgba(160, 112, 50, 0.2);
  --glass: rgba(255, 252, 245, 0.86);
}

body {
  color: #3d2a1b;
  background:
    radial-gradient(circle at 12% 16%, rgba(226, 190, 125, 0.22), transparent 18rem),
    radial-gradient(circle at 86% 8%, rgba(176, 126, 55, 0.18), transparent 20rem),
    linear-gradient(180deg, #fffaf1 0%, #f8ecd9 52%, #ead8bd 100%);
}

body::before {
  z-index: -2;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(177, 125, 52, 0.08) 42% 43%, transparent 43%),
    radial-gradient(circle at 0 0, rgba(177, 125, 52, 0.08) 0 2px, transparent 3px);
  background-size: 110px 110px, 28px 28px;
  mask-image: none;
}

.intro {
  background:
    radial-gradient(circle at 50% 46%, rgba(199, 142, 58, 0.16), transparent 20rem),
    radial-gradient(circle at 50% 50%, #2b1d10, #060403 72%);
}

.intro-mark {
  color: #f5d28b;
  -webkit-text-stroke: 0;
}

.nav {
  padding: 10px clamp(16px, 4vw, 58px);
  background: rgba(255, 251, 242, 0.9);
  border-bottom: 1px solid rgba(170, 126, 63, 0.18);
  box-shadow: 0 8px 32px rgba(75, 42, 13, 0.07);
}

.brand {
  color: #6f431b;
  font-size: clamp(0.72rem, 1.4vw, 0.94rem);
}

.brand img {
  width: 42px;
  height: 42px;
  border-color: rgba(174, 127, 59, 0.28);
  box-shadow: none;
}

.nav nav {
  color: #6e5641;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.nav a:hover {
  color: #a36b24;
  text-shadow: 0 0 18px rgba(211, 159, 80, 0.42);
}

.hero {
  grid-template-columns: minmax(320px, 0.86fr) minmax(420px, 1.14fr);
  min-height: 96vh;
  padding-top: 92px;
  background:
    linear-gradient(rgba(255, 250, 241, 0.82), rgba(255, 250, 241, 0.92)),
    radial-gradient(circle at 34% 42%, rgba(208, 159, 82, 0.28), transparent 28rem);
}

.hero::after {
  right: auto;
  left: 4vw;
  bottom: 6vh;
  width: min(38vw, 520px);
  background: radial-gradient(circle, rgba(189, 132, 55, 0.15), transparent 64%);
}

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

.eyebrow {
  color: #a06a25;
  letter-spacing: 0.16em;
}

h1 {
  color: #6c3f1d;
  font-size: clamp(2.65rem, 6.7vw, 6.2rem);
  line-height: 1;
  text-shadow: 0 12px 38px rgba(110, 67, 28, 0.12);
}

.hero-text {
  max-width: 520px;
  margin-inline: auto;
  color: #7a6550;
}

.hero-actions {
  justify-content: center;
}

.primary-btn,
.ghost-btn {
  min-height: 44px;
  border-radius: 999px;
  border-color: rgba(158, 103, 35, 0.36);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.primary-btn {
  color: #fffaf0;
  background: linear-gradient(135deg, #d2a04a, #8f5a1c);
  box-shadow: 0 18px 30px rgba(144, 91, 32, 0.18);
}

.ghost-btn {
  color: #85551f;
  background: rgba(255, 250, 241, 0.62);
}

.monogram-stage.hero-showcase {
  min-height: min(58vw, 650px);
}

.showpiece {
  position: absolute;
  margin: 0;
  width: clamp(138px, 18vw, 260px);
  aspect-ratio: 1;
  padding: 10px;
  border: 1px solid rgba(177, 125, 52, 0.22);
  border-radius: 50%;
  background: rgba(255, 252, 246, 0.82);
  box-shadow: 0 22px 54px rgba(97, 56, 20, 0.16);
  animation: boutiqueFloat 7s ease-in-out infinite;
}

.showpiece img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.showpiece-one { left: 3%; top: 8%; }
.showpiece-two { right: 10%; top: 7%; animation-delay: -1.4s; }
.showpiece-three { left: 28%; top: 34%; width: clamp(180px, 24vw, 340px); animation-delay: -2.2s; }
.showpiece-four { left: 4%; bottom: 5%; animation-delay: -3s; }
.showpiece-five { right: 4%; bottom: 10%; animation-delay: -4s; }

.fabric {
  display: none;
}

.craft-band,
.collection,
.glimpse,
.visit {
  padding: 66px clamp(16px, 5vw, 74px);
}

.craft-band {
  grid-template-columns: minmax(150px, 0.34fr) minmax(220px, 0.5fr) minmax(260px, 0.7fr);
  align-items: center;
  background: rgba(255, 248, 236, 0.75);
  border-block: 1px solid rgba(177, 125, 52, 0.16);
}

.craft-band > img {
  width: 100%;
  max-width: 270px;
  aspect-ratio: 1.25 / 1;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 34px rgba(95, 55, 21, 0.14);
}

.craft-band h2,
.section-heading h2,
.visit h2,
.glimpse h2 {
  color: #70441f;
  font-size: clamp(1.85rem, 4vw, 3.3rem);
}

.craft-band p:last-child {
  color: #806a55;
}

.glimpse {
  background: linear-gradient(180deg, #fff8ed, #f3e2c9);
  border-bottom: 1px solid rgba(177, 125, 52, 0.18);
}

.slider-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.slider-controls {
  display: flex;
  gap: 10px;
}

.slider-btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(156, 101, 33, 0.24);
  border-radius: 50%;
  color: #8a571f;
  background: #fffaf1;
  box-shadow: 0 10px 22px rgba(95, 55, 21, 0.1);
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
  transition: transform 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.slider-btn:hover {
  color: #fffaf0;
  background: linear-gradient(135deg, #d2a04a, #8f5a1c);
  box-shadow: 0 14px 30px rgba(144, 91, 32, 0.2);
  transform: translateY(-2px);
}

.creation-slider {
  display: grid;
  grid-auto-columns: clamp(148px, 18vw, 230px);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  padding: 6px 4px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(156, 101, 33, 0.32) transparent;
}

.creation-slide {
  scroll-snap-align: start;
  border: 1px solid rgba(177, 125, 52, 0.22);
  border-radius: 8px;
  overflow: hidden;
  background: #fffaf1;
  box-shadow: 0 16px 34px rgba(95, 55, 21, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.creation-slide:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 42px rgba(95, 55, 21, 0.18);
}

.creation-slide img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.creation-slide span {
  display: block;
  padding: 10px 12px 12px;
  color: #75471f;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collection {
  background:
    linear-gradient(rgba(255, 249, 238, 0.92), rgba(255, 249, 238, 0.94)),
    radial-gradient(circle at 50% 0, rgba(186, 129, 47, 0.12), transparent 34rem);
}

.section-heading {
  display: block;
  text-align: center;
}

.cards-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  border-color: rgba(177, 125, 52, 0.18);
  background: rgba(255, 252, 246, 0.9);
  box-shadow: 0 18px 34px rgba(94, 57, 21, 0.12);
}

.product-card:hover {
  border-color: rgba(171, 112, 37, 0.42);
  box-shadow: 0 26px 48px rgba(94, 57, 21, 0.18);
}

.product-image {
  aspect-ratio: 1;
  background: #f3dfc3;
}

.product-content {
  padding: 14px;
}

.product-number,
.product-content h3 {
  color: #79491f;
}

.product-content h3 {
  min-height: 46px;
}

.product-content p {
  color: #76604b;
  font-size: 0.8rem;
}

.product-content ul {
  color: #8a633b;
}

.product-content li {
  border-left-color: rgba(169, 112, 36, 0.38);
}

.visit {
  color: #fff8e8;
  background:
    linear-gradient(110deg, rgba(74, 43, 16, 0.94), rgba(126, 81, 29, 0.82)),
    radial-gradient(circle at 82% 42%, rgba(241, 204, 133, 0.22), transparent 30rem);
}

.visit .eyebrow,
.visit h2 {
  color: #fff3c6;
}

@keyframes boutiqueFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-16px) rotate(3deg); }
}

@media (max-width: 1180px) {
  .cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    margin-inline: auto;
  }

  .monogram-stage.hero-showcase {
    min-height: 470px;
  }

  .craft-band {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Responsive Intro adjustments */
  .intro-lockup {
    flex-direction: column;
    text-align: center;
    gap: clamp(15px, 4vw, 32px);
    min-height: auto;
    padding-top: 20px;
    transform: translateY(-20px);
  }

  .intro-logo-wrapper {
    flex: 0 0 150px;
    width: 150px;
    transform: translateY(-50px);
  }
  
  .stage-1 .intro-logo-wrapper {
    transform: translateY(0);
  }

  .intro-text-wrapper {
    align-items: center;
    transform: translateY(50px);
  }
  
  .stage-1 .intro-text-wrapper {
    transform: translateY(0);
  }

  .brand-title-line {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
    text-align: center;
  }

  .intro-tagline {
    font-size: clamp(0.72rem, 2.2vw, 0.9rem);
    text-align: center;
  }

  /* Fly-out straight up to header center on mobile */
  .intro.is-entering .intro-lockup {
    transform: translate(0, -45vh) scale(0.12);
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 112px;
  }

  .showpiece {
    width: 132px;
  }

  .showpiece-three {
    width: 188px;
    left: 22%;
  }

  .slider-head {
    align-items: start;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   5. LUXURIOUS FULLSCREEN Snapping Slideshow SYSTEM - Refactored to Smooth Scroll
   ========================================================================== */
.site-shell {
  min-height: 100vh;
  width: 100%;
  position: relative;
}

body.stage-active {
  overflow-y: auto;
  overflow-x: hidden;
}

.slider-container {
  width: 100%;
  position: relative;
}

.slide {
  position: relative;
  width: 100%;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
  background: transparent;
}

#home {
  padding-top: 100px;
}

/* Deep golden background glowing aura behind slides */
.slide-bg-glow {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at 50% 50%, rgba(226, 190, 125, 0.14), transparent 45rem);
  pointer-events: none;
}

/* Slide Split Layout (50/50 Screen split) */
.slide-split-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  width: 100%;
  height: 100%;
  align-items: center;
  padding: 100px clamp(24px, 6vw, 100px) 50px;
  gap: 50px;
  box-sizing: border-box;
}

/* For Slide 3 (arched maroon dress), reverse side layout */
#slide2 .slide-split-layout {
  grid-template-columns: 0.85fr 1.15fr;
}

.slide-text-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.slide-visual-side {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}

/* Staggered Content Entry Animations */
.slide-eyebrow,
.slide-title,
.slide-heading,
.slide-divider-thread,
.slide-lead,
.slide-desc,
.slide-features,
.slide-actions,
.luxury-poshak-frame,
.store-details-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

body.stage-active .slide-eyebrow {
  opacity: 0.75;
  transform: translateY(0);
  transition-delay: 0.12s;
}

body.stage-active .slide-title,
body.stage-active .slide-heading {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.24s;
}

body.stage-active .slide-divider-thread {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.34s;
}

body.stage-active .slide-lead,
body.stage-active .slide-desc {
  opacity: 0.88;
  transform: translateY(0);
  transition-delay: 0.44s;
}

body.stage-active .slide-features {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.54s;
}

body.stage-active .slide-actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.64s;
}

body.stage-active .luxury-poshak-frame {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.38s;
}

body.stage-active .store-details-card {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.58s;
}

/* Typography Overrides */
.slide-eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.slide-title {
  font-family: Cinzel, serif;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  line-height: 1.05;
  color: var(--royal);
  text-shadow: 0 12px 30px rgba(110, 67, 28, 0.08);
}

.slide-heading {
  font-family: Cinzel, serif;
  font-size: clamp(1.8rem, 4.2vw, 3.4rem);
  line-height: 1.1;
  color: var(--royal);
  margin: 0;
}

.slide-lead {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  line-height: 1.75;
  color: var(--muted);
}

.slide-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.slide-divider-thread {
  width: 90px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 14px 0 18px;
}

.slide-features {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 20px 0 26px;
  list-style: none;
  width: 100%;
}

.slide-features li {
  font-size: 0.82rem;
  color: var(--muted);
  padding-left: 14px;
  border-left: 2px solid var(--gold);
}

.slide-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Slide 1 Centered Content */
.slide-content.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 40px clamp(24px, 8vw, 120px) 70px;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}

.slide-content.centered .slide-eyebrow {
  margin-bottom: 12px;
}

.slide-content.centered .slide-title {
  margin: 8px 0 18px;
}

.slide-content.centered .slide-lead {
  max-width: 600px;
  margin: 0 auto 28px;
}

.slide-content.centered .slide-actions {
  justify-content: center;
}

/* Ivory Orbiting Fabrics overrides */
.slide-orbit-fabrics {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.slide-orbit-fabrics .fabric {
  display: block !important;
  position: absolute;
  z-index: -1;
  width: clamp(180px, 22vw, 320px);
  aspect-ratio: 1.8 / 1;
  border-radius: 48% 52% 45% 55% / 45% 62% 38% 55%;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.4), transparent 25%),
    linear-gradient(110deg, rgba(225, 180, 95, 0.28), rgba(255, 248, 236, 0.4) 50%, rgba(185, 129, 47, 0.22));
  border: 1px solid rgba(185, 129, 47, 0.15);
  filter: drop-shadow(0 18px 36px rgba(95, 55, 21, 0.08));
  transform-style: preserve-3d;
  animation: fabricDrift 10s ease-in-out infinite;
}

.slide-orbit-fabrics .fabric-one {
  top: 18%;
  right: 10%;
  transform: rotate(-14deg);
}

.slide-orbit-fabrics .fabric-two {
  left: 6%;
  bottom: 16%;
  animation-delay: -2s;
}

.slide-orbit-fabrics .fabric-three {
  right: 28%;
  bottom: 8%;
  width: clamp(140px, 16vw, 240px);
  animation-delay: -4s;
}

/* ==========================================================================
   6. PREMIUM DOUBLE GOLD SHAPE FRAMES (PROPER aspect-ratioS)
   ========================================================================== */
.luxury-poshak-frame {
  position: relative;
  width: min(390px, 78vw);
  height: min(390px, 78vw);
  padding: 8px; /* space between outer and inner borders */
  border: 2px solid var(--gold);
  background: rgba(255, 252, 245, 0.45);
  box-shadow: 0 20px 48px rgba(47, 33, 23, 0.14), 0 0 35px rgba(185, 129, 47, 0.06);
  overflow: hidden;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
  transform-style: preserve-3d;
  box-sizing: border-box;
}

.luxury-poshak-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(185, 129, 47, 0.36);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}

.luxury-poshak-frame:hover img {
  transform: scale(1.06);
}

/* Specific Shapes */
.luxury-poshak-frame.circular,
.luxury-poshak-frame.circular img {
  border-radius: 50%;
}

.luxury-poshak-frame.arched {
  border-top-left-radius: 50% 42%;
  border-top-right-radius: 50% 42%;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.luxury-poshak-frame.arched img {
  border-top-left-radius: 50% 42%;
  border-top-right-radius: 50% 42%;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.luxury-poshak-frame.rounded-square,
.luxury-poshak-frame.rounded-square img {
  border-radius: 32px;
}

/* Shine sweep overlay */
.frame-shine-sweep {
  position: absolute;
  inset: -50%;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform: rotate(-25deg) translateY(-100%);
  pointer-events: none;
  z-index: 3;
}

.luxury-poshak-frame:hover .frame-shine-sweep {
  animation: shineSweep 1.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes shineSweep {
  0% { transform: rotate(-25deg) translateY(-100%); }
  100% { transform: rotate(-25deg) translateY(100%); }
}

/* Store details card (Slide 6) */
.store-details-card {
  margin-top: 22px;
  padding: 22px;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(47, 33, 23, 0.05);
  max-width: 480px;
  width: 100%;
  box-sizing: border-box;
}

.store-details-card h3 {
  font-family: Cinzel, serif;
  font-size: 1.1rem;
  color: var(--royal);
  margin: 0 0 6px;
  font-weight: 700;
}

.store-details-card p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 18px;
}

/* ==========================================================================
   7. 3D COVERFLOW GALLERY CAROUSEL (MIDDLE-SELECTED ONE-BY-ONE)
   ========================================================================== */
.slide-gallery-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0 30px 30px;
  box-sizing: border-box;
  overflow: hidden;
  text-align: center;
}

.gallery-header {
  margin-bottom: 15px;
  max-width: 750px;
}

.gallery-sub {
  font-size: 0.84rem;
  color: var(--muted);
  margin: 6px 0 0;
  line-height: 1.5;
}

.gallery-slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 1050px;
  height: 410px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px;
}

.creation-slider {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1200px;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible !important; /* Overrides original horizontal scroll rules */
  padding: 0;
}

.creation-slide {
  position: absolute !important; /* absolute placement for custom JS positions */
  left: auto !important;
  top: auto !important;
  width: 240px !important;
  height: 330px !important;
  border-radius: 12px;
  border: 2px solid rgba(185, 129, 47, 0.2);
  background: var(--glass);
  box-shadow: 0 15px 35px rgba(47, 33, 23, 0.08);
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  transform-origin: center center;
  z-index: 1;
}

.creation-slide.visible {
  opacity: 1;
  pointer-events: auto;
}

.creation-slide img {
  width: 100% !important;
  height: 255px !important;
  object-fit: cover !important;
  border-bottom: 1px solid rgba(185, 129, 47, 0.16);
  border-radius: 0 !important;
  aspect-ratio: auto !important;
}

.creation-slide span {
  display: block;
  padding: 12px 10px !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  color: var(--royal) !important;
  text-transform: uppercase !important;
  margin: 0 !important;
  text-align: center;
}

/* Centered selected slide highlights */
.creation-slide.active {
  border-color: var(--hot-gold);
  box-shadow: 0 25px 50px rgba(185, 129, 47, 0.22), 0 0 25px rgba(225, 180, 95, 0.16);
  z-index: 10;
}

.creation-slide.active span {
  color: var(--gold) !important;
  font-weight: 900 !important;
}

/* Arrows controls overlaying the carousel edges */
.gallery-slider-wrapper .slider-controls {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 15;
}

.gallery-slider-wrapper .slider-btn {
  width: 48px;
  height: 48px;
  pointer-events: auto;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--glass);
  color: var(--gold);
  font-size: 1.8rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(47, 33, 23, 0.06);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  line-height: 1;
}

.gallery-slider-wrapper .slider-btn:hover {
  background: var(--gold);
  color: #fffaf1;
  border-color: var(--gold);
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 12px 28px rgba(185, 129, 47, 0.24);
}

.gallery-slider-wrapper .slider-btn[data-slide="prev"] {
  transform: translateX(-15px);
}
.gallery-slider-wrapper .slider-btn[data-slide="next"] {
  transform: translateX(15px);
}

.gallery-slider-wrapper .slider-btn[data-slide="prev"]:hover {
  transform: translateX(-15px) translateY(-2px) scale(1.08);
}
.gallery-slider-wrapper .slider-btn[data-slide="next"]:hover {
  transform: translateX(15px) translateY(-2px) scale(1.08);
}

/* ==========================================================================
   8. DOCK-STYLE PAGINATION BULLETS & UP/DOWN NAVIGATION OVERLAYS
   ========================================================================== */
.slider-pagination {
  position: fixed;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s ease;
}

body.stage-active .slider-pagination {
  opacity: 1;
  visibility: visible;
}

.pag-dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(125, 84, 40, 0.24);
  border: 1px solid rgba(185, 129, 47, 0.36);
  cursor: pointer;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  outline: none;
}

.pag-dot:hover,
.pag-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
  box-shadow: 0 0 10px var(--gold);
}

.dot-label {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: var(--glass);
  border: 1px solid var(--line);
  color: var(--royal);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 6px 16px rgba(47, 33, 23, 0.05);
  font-family: Inter, sans-serif;
}

.pag-dot:hover .dot-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Floating Chapter Down Indicator */
.slide-down-indicator {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  cursor: pointer;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s ease, transform 0.3s;
  animation: arrowSwaySoft 2s ease-in-out infinite;
}

body.stage-active .slide-down-indicator {
  opacity: 0.75;
  visibility: visible;
}

.slide-down-indicator span {
  font-family: Inter, sans-serif;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.slide-down-indicator svg {
  stroke: var(--gold);
}

.slide-down-indicator:hover {
  opacity: 1;
}

@keyframes arrowSwaySoft {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}

/* ==========================================================================
   9. MOBILE RESPONSIVE LAYOUT STACKING & OVERRIDES
   ========================================================================== */
@media (max-width: 820px) {
  body.stage-active {
    overflow-y: auto;
    overflow-x: hidden;
  }

  .slide-split-layout {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto;
    padding: 85px 20px 75px !important;
    gap: 22px !important;
    align-content: center;
    box-sizing: border-box;
  }

  /* Slide 3 visual side goes back to original order or let stacking handle it */
  #slide2 .slide-split-layout {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto;
  }

  /* Text elements centering on mobile */
  .slide-text-side {
    text-align: center;
    align-items: center;
  }

  .slide-divider-thread {
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  .slide-features {
    margin: 14px 0 18px;
    gap: 8px;
  }

  .slide-features li {
    border-left: none;
    border-bottom: 1px solid rgba(185, 129, 47, 0.16);
    padding: 0 0 6px;
    text-align: center;
  }

  .slide-actions {
    justify-content: center;
    gap: 10px;
  }

  .luxury-poshak-frame {
    width: min(270px, 58vw);
    height: min(270px, 58vw);
    padding: 6px;
  }

  /* Hide bullets tooltip label on tablet/mobile */
  .dot-label {
    display: none !important;
  }

  .slider-pagination {
    right: 15px;
    gap: 12px;
  }

  .pag-dot {
    width: 8px;
    height: 8px;
  }

  /* Coverflow settings for smaller screens */
  .gallery-slider-wrapper {
    height: 350px;
  }

  .creation-slide {
    width: 200px !important;
    height: 275px !important;
  }

  .creation-slide img {
    height: 210px !important;
  }

  .creation-slide span {
    font-size: 0.65rem !important;
    padding: 8px 6px !important;
  }

  .gallery-slider-wrapper .slider-btn {
    width: 42px;
    height: 42px;
    font-size: 1.4rem;
  }
}

@media (max-width: 560px) {
  .slide-content.centered {
    padding: 80px 16px 60px;
  }

  .slide-title {
    font-size: clamp(2rem, 5.5vw, 2.5rem);
  }

  .slide-heading {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
  }

  .slide-lead {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .slide-desc {
    font-size: 0.8rem;
    line-height: 1.55;
  }

  .primary-btn,
  .ghost-btn {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.68rem;
  }

  .store-details-card {
    padding: 14px;
    margin-top: 14px;
  }

  .store-details-card h3 {
    font-size: 0.95rem;
  }

  .store-details-card p {
    font-size: 0.75rem;
    margin-bottom: 12px;
  }

  .gallery-slider-wrapper {
    height: 300px;
  }

  .creation-slide {
    width: 160px !important;
    height: 230px !important;
  }

  .creation-slide img {
    height: 175px !important;
  }

  .creation-slide span {
    font-size: 0.58rem !important;
    padding: 6px 4px !important;
  }

  .gallery-slider-wrapper .slider-btn {
    width: 34px;
    height: 34px;
    font-size: 1.1rem;
  }
  
  .gallery-slider-wrapper .slider-btn[data-slide="prev"] {
    transform: translateX(-5px);
  }
  .gallery-slider-wrapper .slider-btn[data-slide="next"] {
    transform: translateX(5px);
  }
  .gallery-slider-wrapper .slider-btn[data-slide="prev"]:hover {
    transform: translateX(-5px) translateY(-2px) scale(1.05);
  }
  .gallery-slider-wrapper .slider-btn[data-slide="next"]:hover {
    transform: translateX(5px) translateY(-2px) scale(1.05);
  }
}

/* ==========================================================================
   10. DEVOTIONAL BRAND BENEFITS HORIZONTAL CARDS SYSTEM
   ========================================================================== */
.brand-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  width: 100%;
  box-sizing: border-box;
  margin-top: 10px;
}

@media (max-width: 1100px) and (min-width: 821px) {
  .brand-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefit-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 38px 24px;
  border-radius: 12px;
  border: 1px solid rgba(185, 129, 47, 0.15);
  background: var(--glass);
  box-shadow: 0 15px 35px rgba(47, 33, 23, 0.05);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  box-sizing: border-box;
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--hot-gold);
  box-shadow: 0 24px 48px rgba(185, 129, 47, 0.14), 0 0 15px rgba(225, 180, 95, 0.08);
}

.benefit-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(185, 129, 47, 0.08);
  border: 1px solid rgba(185, 129, 47, 0.2);
  color: var(--gold);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon-wrapper {
  background: var(--gold);
  color: #fff8eb;
  transform: scale(1.08);
}

.benefit-card h3 {
  font-family: Cinzel, serif;
  font-size: 1.15rem;
  color: var(--royal);
  margin: 0 0 12px;
  font-weight: 700;
}

.benefit-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Staggered Benefits Cards Entry Anim Delays */
body.stage-active .benefit-card:nth-child(1) {
  transition-delay: 0.15s;
}

body.stage-active .benefit-card:nth-child(2) {
  transition-delay: 0.28s;
}

body.stage-active .benefit-card:nth-child(3) {
  transition-delay: 0.4s;
}

body.stage-active .benefit-card:nth-child(4) {
  transition-delay: 0.52s;
}

/* Benefits Grid Mobile responsiveness */
@media (max-width: 820px) {
  .brand-benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 5px;
  }
  
  .benefit-card {
    padding: 24px 20px;
  }
  
  .benefit-icon-wrapper {
    margin-bottom: 12px;
    width: 44px;
    height: 44px;
  }
  
  .benefit-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
  }
  
  .benefit-card p {
    font-size: 0.78rem;
    line-height: 1.5;
  }
}

/* ==========================================================================
   11. LUXURIOUS FILTERED COLLECTIONS GALLERY (NITYA & UTSAV)
   ========================================================================== */
.collection-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 45px;
  flex-wrap: wrap;
  width: 100%;
}

.tab-btn {
  background: var(--glass);
  border: 1px solid rgba(185, 129, 47, 0.2);
  color: var(--muted);
  font-family: Cinzel, serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 999px;
  cursor: pointer;
  outline: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 4px 12px rgba(47, 33, 23, 0.03);
}

.tab-btn .tab-subtitle {
  font-family: Inter, sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--muted);
  opacity: 0.75;
  text-transform: none;
  margin-top: 2px;
}

.tab-btn:hover {
  border-color: rgba(225, 180, 95, 0.6);
  color: var(--gold);
  transform: translateY(-2px);
}

.tab-btn.active {
  background: linear-gradient(135deg, rgba(226, 190, 125, 0.18), rgba(185, 129, 47, 0.08));
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px rgba(185, 129, 47, 0.16), inset 0 0 10px rgba(185, 129, 47, 0.05);
}

.tab-btn.active .tab-subtitle {
  color: var(--hot-gold);
}

/* Grid & Items */
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 34px 26px;
  width: 100%;
  box-sizing: border-box;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.products-grid.filtering {
  opacity: 0;
  transform: translateY(8px);
}

.product-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-item.hidden {
  display: none !important;
}

.product-item .product-frame {
  margin-bottom: 18px;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  box-sizing: border-box;
}

.product-category-tag {
  font-family: Inter, sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
  opacity: 0.75;
}

.product-item h3 {
  font-family: Cinzel, serif;
  font-size: 1.1rem;
  color: var(--royal);
  margin: 0 0 4px;
  font-weight: 700;
  line-height: 1.25;
}

.product-material {
  font-family: Inter, sans-serif;
  font-size: 0.74rem;
  color: var(--muted);
  margin: 0;
}

/* Responsive grid layout */
@media (max-width: 1200px) and (min-width: 901px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 18px;
  }
}

@media (max-width: 900px) and (min-width: 581px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
}

@media (max-width: 580px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}




/* ==========================================================================
   12. LUXURIOUS PRODUCT DETAILS MODAL (LIGHTBOX)
   ========================================================================== */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s ease;
}

.product-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 6, 4, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1;
}

.modal-card {
  position: relative;
  width: min(92vw, 920px);
  max-height: min(90vh, 650px);
  background: var(--glass);
  border: 1px solid rgba(185, 129, 47, 0.28);
  border-radius: 16px;
  box-shadow: 0 35px 80px rgba(47, 33, 23, 0.32), 0 0 45px rgba(185, 129, 47, 0.1);
  overflow: hidden;
  z-index: 2;
  display: flex;
  flex-direction: column;
  transform: scale(0.95) translateY(15px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.product-modal.open .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(185, 129, 47, 0.08);
  border: 1px solid rgba(185, 129, 47, 0.24);
  color: var(--gold);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.modal-close-btn:hover {
  background: var(--gold);
  color: #fffaf1;
  transform: rotate(90deg);
  box-shadow: 0 0 15px rgba(185, 129, 47, 0.35);
}

.modal-content-layout {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr;
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.modal-image-wrapper {
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(185, 129, 47, 0.03);
  border-right: 1px solid rgba(185, 129, 47, 0.12);
  box-sizing: border-box;
}

.modal-image-frame {
  width: 100% !important;
  aspect-ratio: 1 !important;
}

.modal-text-wrapper {
  padding: 45px 40px 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.modal-tag {
  font-family: Inter, sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.modal-title {
  font-family: Cinzel, serif;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  color: var(--royal);
  margin: 0 0 4px;
  font-weight: 700;
  line-height: 1.15;
}

.modal-material {
  font-family: Inter, sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

.modal-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 18px 0;
}

.modal-scroll-area {
  flex: 1;
  overflow-y: auto;
  padding-right: 12px;
  margin-bottom: 24px;
  scrollbar-width: thin;
  scrollbar-color: rgba(185, 129, 47, 0.25) transparent;
}

.modal-scroll-area::-webkit-scrollbar {
  width: 5px;
}

.modal-scroll-area::-webkit-scrollbar-thumb {
  background: rgba(185, 129, 47, 0.25);
  border-radius: 99px;
}

.modal-description {
  font-family: Inter, sans-serif;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 22px;
}

.modal-subtitle {
  font-family: Cinzel, serif;
  font-size: 0.95rem;
  color: var(--royal);
  margin: 0 0 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modal-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.modal-highlights li {
  font-family: Inter, sans-serif;
  font-size: 0.8rem;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.modal-highlights li::before {
  content: "✨";
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 0.72rem;
}

.modal-actions {
  margin-top: auto;
}

.whatsapp-inquiry-btn {
  width: 100%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem !important;
  min-height: 48px;
  border-radius: 6px !important;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

@media (max-width: 820px) {
  .modal-card {
    max-height: min(94vh, 700px);
    width: min(94vw, 520px);
  }

  .modal-content-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    overflow-y: auto;
  }

  .modal-image-wrapper {
    padding: 30px;
    border-right: none;
    border-bottom: 1px solid rgba(185, 129, 47, 0.12);
  }

  .modal-image-frame {
    width: 160px !important;
    height: 160px !important;
  }

  .modal-text-wrapper {
    padding: 28px 24px 24px;
    height: auto;
    overflow: visible;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .modal-scroll-area {
    overflow-y: visible;
    padding-right: 0;
    margin-bottom: 18px;
  }
}

/* ==========================================================================
   13. CUSTOMIZATION TICKET DESK (#custom-ticket)
   ========================================================================== */
.custom-ticket-container {
  width: 100%;
  max-width: 820px;
  background: var(--glass);
  border: 1px solid rgba(185, 129, 47, 0.22);
  border-radius: 16px;
  padding: 38px 30px;
  box-shadow: 0 20px 48px rgba(47, 33, 23, 0.06), 0 0 30px rgba(185, 129, 47, 0.05);
  margin: 0 auto;
  box-sizing: border-box;
}

.ticket-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 24px;
  width: 100%;
  box-sizing: border-box;
}

.form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  text-align: left;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-family: Cinzel, serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--royal);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 252, 246, 0.52);
  border: 1px solid rgba(185, 129, 47, 0.24);
  border-radius: 6px;
  padding: 12px 14px;
  font-family: Inter, sans-serif;
  font-size: 0.84rem;
  color: #3d2a1b;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(127, 109, 90, 0.65);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(185, 129, 47, 0.14);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23b9812f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 5 3 3 3-3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.submit-ticket-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 0.84rem !important;
  min-height: 52px;
  border-radius: 6px !important;
  cursor: pointer;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .custom-ticket-container {
    padding: 24px 20px;
  }
}

/* ==========================================================================
   14. CONTACT & ADDRESS DESK (FOOTER LAYOUT)
   ========================================================================== */
.footer-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 45px 60px;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
  border-bottom: 1px solid rgba(185, 129, 47, 0.16);
  padding-bottom: 45px;
}

.footer-tag {
  font-family: Inter, sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.footer-heading {
  font-family: Cinzel, serif;
  font-size: 1.8rem;
  color: var(--royal);
  margin: 0;
  font-weight: 700;
}

.footer-divider-small {
  width: 45px;
  height: 2px;
  background: var(--gold);
  margin: 12px 0 24px;
}

.contact-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.contact-item-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.contact-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(185, 129, 47, 0.06);
  border: 1px solid rgba(185, 129, 47, 0.16);
  color: var(--gold);
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
}

.contact-item-link:hover {
  color: var(--gold);
}

.contact-item-link:hover .contact-icon-box {
  background: var(--gold);
  color: #fffaf1;
  transform: scale(1.08);
  box-shadow: 0 0 15px rgba(185, 129, 47, 0.28);
}

.contact-number {
  font-family: Cinzel, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--royal);
}

.contact-meta {
  font-family: Inter, sans-serif;
  font-size: 0.76rem;
  color: var(--muted);
}

.address-details-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  background: rgba(185, 129, 47, 0.04);
  border: 1px solid rgba(185, 129, 47, 0.14);
  border-radius: 10px;
  max-width: 420px;
}

.location-icon-box {
  color: var(--gold);
  flex-shrink: 0;
}

.address-text-group {
  display: flex;
  flex-direction: column;
}

.address-city {
  font-family: Cinzel, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--royal);
  margin: 0 0 2px;
}

.address-country {
  font-family: Inter, sans-serif;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 8px;
}

.address-hours {
  font-family: Inter, sans-serif;
  font-size: 0.74rem;
  color: var(--muted);
  margin: 0;
  opacity: 0.88;
}

.footer-copyright-row {
  width: 100%;
  text-align: center;
  padding-top: 30px;
  font-family: Inter, sans-serif;
  font-size: 0.76rem;
  color: var(--muted);
  opacity: 0.8;
}

@media (max-width: 820px) {
  .footer-layout {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-bottom: 30px;
  }
  .contact-number {
    font-size: 1.05rem;
  }
}
