/* ==========================================================================
   THE CHAI PARADISE - STYLE PRODUCTION SYSTEM (PART 1/14)
   ========================================================================== */

:root {
  --primary: #0D1B2A;        /* Official Corporate Midnight Obsidian Blue */
  --secondary: #7A7256;      /* Official Corporate Vintage Gold Brass */
  --light-bg: #FDFBF7;       /* Premium Soft Alabaster Linen Cream Canvas */
  --white: #FFFFFF;
  --font-serif: 'Forum', serif; /* Brand Guideline Luxury Roman Typeface */
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--light-bg);
  color: var(--primary);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
/* ==========================================================================
   INTERSECTION MOTION ENGINES (PART 2/14)
   ========================================================================== */

.fade-in-view, .fade-in-view-left, .fade-in-view-right {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.fade-in-view { 
  transform: translateY(25px); 
}

.fade-in-view-left { 
  transform: translateX(-25px); 
}

.fade-in-view-right { 
  transform: translateX(25px); 
}

.fade-in-view.active, .fade-in-view-left.active, .fade-in-view-right.active {
  opacity: 1;
  transform: translate(0) scale(1);
}
/* ==========================================================================
   FIXED TOP MENU FRAMEWORK (PART 3/14)
   ========================================================================== */

.navigation-bar-fixed {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 5.5rem;
  background-color: transparent;
  z-index: 2000;
  display: flex;
  align-items: center;
  transform: translateY(-100px);
  animation: navbarDropIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease, height 0.4s ease;
}

.navigation-bar-fixed.scrolled-state {
  background-color: rgba(13, 27, 42, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  height: 5rem;
}

/* --- MICRO-SIZED NAV ENGINE MATRICES --- */
.navbar-max-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;             /* Generous padding limits matching your staging app */
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap !important;
}/* ==========================================================================
   DESKTOP DIRECTORY TRACKING (PART 4/14)
   ========================================================================== */

.nav-brand-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0 !important;
}

.navbar-logo-avatar {
  height: 2.2rem;              /* Sleek, down-scaled avatar footprint */
  width: auto;
  object-fit: contain;
}

.navbar-brand-string-text {
  font-family: var(--font-serif);
  font-size: 0.95rem;          /* Clean micro-serif scale to prevent letter stretching */
  letter-spacing: 0.16em;
  color: #FDFBF7;
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap !important;
  word-break: keep-all !important;
  display: inline-block;
}
.nav-directory-links-deck {
  display: flex;
  align-items: center;
  gap: 1.85rem;                /* Opened up natural luxury gaps between text paths */
  margin-left: auto;
  flex-shrink: 0 !important;
}
@media(max-width: 1023px) {
  .nav-directory-links-deck { display: none !important; }
}

.deck-link-anchor {
  font-family: var(--font-sans);
  font-size: 0.7rem;           /* Elegant ultra-fine lettering */
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(253, 251, 247, 0.85);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap !important;
}

.deck-link-anchor:hover {
  color: var(--secondary);
}

.deck-order-action-btn {
  display: inline-flex;
  padding: 0.55rem 1.35rem;     /* Sleek button padding proportions matching screenshot */
  background-color: var(--secondary);
  color: #FDFBF7;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-left: 0.5rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap !important;
}

.deck-order-action-btn:hover {
  background-color: #5c543f;
}

@keyframes navbarDropIn { to { transform: translateY(0); } }
/* ==========================================================================
   MOBILE INTERACTIVE DRAWER OVERLAYS (PART 5/14)
   ========================================================================== */

.mobile-menu-hamburger-btn {
  background: none; border: none;
  color: #FDFBF7; padding: 0.5rem;
  cursor: pointer; display: flex;
  align-items: center; justify-content: center;
}

@media(min-width: 1024px) {
  .mobile-menu-hamburger-btn { display: none !important; }
}

.mobile-drawer-overlay-panel {
  position: fixed;
  inset: 0; width: 100%; height: 100vh;
  background-color: var(--primary);
  z-index: 5000; display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer-overlay-panel.is-active-drawer {
  transform: translateX(0);
}

.drawer-header-row {
  height: 5.5rem; padding: 0 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid rgba(122, 114, 86, 0.15);
}

.mobile-menu-close-btn {
  background: none; border: none;
  color: #FDFBF7; padding: 0.5rem;
  cursor: pointer; display: flex;
  align-items: center; justify-content: center;
}

.drawer-links-column-stack {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2rem; margin-top: 4rem;
}
/* ==========================================================================
   MOBILE LINKS TIMELINE DELAYS (PART 6/14)
   ========================================================================== */

.drawer-panel-link-anchor {
  font-family: var(--font-serif);
  font-size: 1.85rem; letter-spacing: 0.15em;
  color: #FDFBF7; text-decoration: none;
  text-transform: uppercase; transition: color 0.3s ease;
  opacity: 0; transform: translateY(20px);
}

.drawer-panel-link-anchor:hover {
  color: var(--secondary);
}

.drawer-order-panel-action-btn {
  display: inline-flex; padding: 0.85rem 2.5rem;
  background-color: var(--secondary); color: #FDFBF7;
  text-decoration: none; font-family: var(--font-sans);
  font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 4px; margin-top: 1rem;
  opacity: 0; transform: translateY(20px);
}

.mobile-drawer-overlay-panel.is-active-drawer .drawer-panel-link-anchor,
.mobile-drawer-overlay-panel.is-active-drawer .drawer-order-panel-action-btn {
  animation: drawerItemFadeUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-stagger-1 { animation-delay: 0.04s !important; }
.animate-stagger-2 { animation-delay: 0.10s !important; }
.animate-stagger-3 { animation-delay: 0.16s !important; }
.animate-stagger-4 { animation-delay: 0.22s !important; }
.animate-stagger-5 { animation-delay: 0.28s !important; }
.animate-stagger-6 { animation-delay: 0.34s !important; }
.animate-stagger-7 { animation-delay: 0.40s !important; }
.animate-stagger-8 { animation-delay: 0.46s !important; }

@keyframes drawerItemFadeUp { to { opacity: 1; transform: translateY(0); } }
/* ==========================================================================
   BALANCED COMPACT HERO SHOWCASE (PART 7/14)
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--primary);
  overflow: hidden;
  padding: 7.5rem 5% 5rem;
}

.hero-bg-wrapper {
  position: absolute; inset: 0;
  width: 100%; height: 100%; z-index: 1;
}

.hero-bg-spices {
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.22;
}

.hero-gradient-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(13, 27, 42, 0.6) 0%, var(--primary) 100%);
}

.steam-decor {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none; z-index: 2;
}

.steam-one { top: 20%; left: 15%; width: 20rem; height: 25rem; background: rgba(225, 155, 92, 0.04); }
.steam-two { bottom: 15%; right: 20%; width: 16rem; height: 22rem; background: rgba(197, 160, 89, 0.04); }

.hero-inner-container { position: relative; z-index: 10; width: 100%; max-width: 1200px; margin: 0 auto; }
.hero-layout-grid-centered { display: flex; justify-content: center; align-items: center; width: 100%; }
.text-center-alignment { text-align: center; width: 100%; }

.hero-origin-badge { display: inline-flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.badge-line { height: 1px; width: 2.5rem; background-color: var(--secondary); }
.hero-origin-badge span { font-family: var(--font-sans); font-size: 0.75rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--secondary); font-weight: 600; }
/* ==========================================================================
   HERO HEADINGS & TRUST BADGES (PART 8/14)
   ========================================================================== */

.hero-main-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5.5vw, 4.2rem);
  line-height: 1.1;
  color: #FDFBF7;
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.hero-italic-subtitle {
  font-size: clamp(1.35rem, 3.2vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(253, 251, 247, 0.75);
  display: block;
  margin-top: 0.35rem;
}

.hero-description-paragraph {
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: rgba(253, 251, 247, 0.65);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.text-margins-auto { margin-left: auto; margin-right: auto; max-width: 38rem; }
.hero-cta-button-group { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1.25rem; margin-bottom: 4rem; }

.hero-btn-primary {
  display: inline-flex; align-items: center; gap: 0.65rem; background-color: var(--secondary); color: #FDFBF7; padding: 1.1rem 2.4rem; text-decoration: none; font-family: var(--font-sans); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; border-radius: 4px; box-shadow: 0 4px 20px rgba(122, 114, 86, 0.2); transition: background-color 0.3s ease, transform 0.3s ease;
}
.hero-btn-primary:hover { background-color: #5c543f; transform: translateY(-2px); }
.bouncing-arrow { display: inline-block; animation: arrowBounce 1.5s infinite ease-in-out; }

.hero-btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(253, 251, 247, 0.25); color: #FDFBF7; padding: 1.1rem 2.4rem; text-decoration: none; font-family: var(--font-sans); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; border-radius: 4px; transition: all 0.3s ease;
}
.hero-btn-secondary:hover { border-color: var(--secondary); color: var(--secondary); background-color: rgba(122, 114, 86, 0.05); }

.hero-trust-metrics { display: flex; align-items: center; justify-content: center; gap: 2.5rem; border-top: 1px solid rgba(253, 251, 247, 0.08); padding-top: 3.5rem; }
.metrics-margins-auto { margin-left: auto; margin-right: auto; max-width: 32rem; }
.metric-node { text-align: center; }
.metric-num { font-family: var(--font-serif); font-size: clamp(1.85rem, 3vw, 2.5rem); color: var(--secondary); font-weight: 400; display: block; line-height: 1; }
.metric-label { font-family: var(--font-sans); font-size: 0.7rem; color: rgba(253, 251, 247, 0.45); margin-top: 0.5rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
.metric-vertical-divider { width: 1px; height: 2.5rem; background-color: rgba(122, 114, 86, 0.2); }

@keyframes arrowBounce { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(5px); } }
/* ==========================================================================
   COMPACT HERITAGE STORY MODULE (PART 9/14)
   ========================================================================== */

/* ==========================================================================
   OFFICIAL BRAND GUIDELINES: HERITAGE STORY SECTION TYPOGRAPHY & GRIDS
   ========================================================================== */

.story-section {
  position: relative;
  padding: 5rem 5%; /* Tight, controlled padding parameters to close layout gaps */
  background-color: var(--light-bg); /* Warm Cream Alabaster Canvas Base */
  overflow: hidden;
}

.story-container {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
}

.story-header {
  text-align: center;
  margin-bottom: 3rem;
}

.accent-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.accent-divider .line {
  height: 1px;
  width: 3rem;
  background-color: var(--secondary); /* Brand Guideline Vintage Gold Accent */
}

.badge-text {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 600;
}

.section-main-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem); /* Clean micro-serif headline constraints */
  color: var(--primary); /* Brand Guideline Midnight Obsidian Blue */
  font-weight: 400;
  letter-spacing: 0.02em;
}

.italic-brass {
  color: var(--secondary);
  font-style: italic;
  font-family: var(--font-serif);
}

/* Strict Two-Column Master Grid Layout Framework */
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media(min-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr 1fr; /* Force columns to share screen space 50/50 */
    gap: 5rem;
  }
}

/* Left Side Image Column Box Layout Anchor */
.story-images {
  position: relative;
  width: 100%;
}

.image-wrapper {
  position: relative;
  display: block;
  width: 100%;
}

/* 1. Master Mumbai Sunset Backdrop Frame Scale */
.main-mumbai-img {
  width: 100%;
  height: clamp(18rem, 35vh, 26rem);
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

/* Vintage Gold Decorative Outline Box Offset */
.decorative-border-box {
  position: absolute;
  bottom: -1.25rem; 
  left: -1.25rem;
  width: 10rem; 
  height: 10rem;
  border-left: 2px solid rgba(122, 114, 86, 0.25);
  border-bottom: 2px solid rgba(122, 114, 86, 0.25);
  border-radius: 2px;
  z-index: 1;
  pointer-events: none;
}

/* 2. Overlapping Pour Box (WHITE BORDER COMPLETELY STRIPPED OUT) */
.inset-pour-box {
  position: absolute;
  bottom: -1.5rem; 
  right: -1.5rem;
  width: 11rem; 
  height: 11rem;
  overflow: hidden;
  border-radius: 2px;
  
  /* Critical Border Removal Overrides */
  background: transparent !important;
  border: none !important; 
  
  /* Lightweight shadow directly on the graphic edge to make it float */
  box-shadow: 0 15px 35px rgba(13, 27, 42, 0.25);
  z-index: 2;
}

.inset-pour-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right Side Text Block Mechanics */
.story-text h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.35;
  font-weight: 400;
}

.narrative-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: rgba(13, 27, 42, 0.65);
  line-height: 1.75;
}

.story-quote-block {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.quote-gradient-line {
  height: 1px;
  flex: 1;
  background: linear-gradient(to right, rgba(122, 114, 86, 0.3), transparent);
}

.quote-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--secondary);
}

@media(max-width: 1023px) {
  .story-grid { gap: 4rem; }
  .decorative-border-box, .inset-pour-box { display: none !important; } /* Simplifies viewport tracking on smaller mobile devices */
}

/* ==========================================================================
   COMPACT LUXURY BAZAAR CATALOG (PART 10/14)
   ========================================================================== */

.bazaar-section {
  position: relative; padding: 5rem 5%; background-color: var(--primary); overflow: hidden; border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.bazaar-ambient-glow { position: absolute; width: 25rem; height: 25rem; background: radial-gradient(circle, rgba(122, 114, 86, 0.04) 0%, transparent 75%); pointer-events: none; }
.bazaar-ambient-glow.left-glow { top: 20%; left: -5%; }
.bazaar-ambient-glow.right-glow { bottom: 10%; right: -5%; }
.bazaar-container { position: relative; z-index: 10; max-width: 1200px; margin: 0 auto; }
.bazaar-header { margin-bottom: 3rem; }
.bazaar-badge-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.bazaar-accent-line { height: 1px; width: 4rem; background-color: var(--secondary); }
.bazaar-badge-text { font-family: var(--font-sans); font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--secondary); font-weight: 600; }
.bazaar-title-split { display: flex; justify-content: space-between; align-items: flex-end; gap: 3rem; flex-wrap: wrap; }
.bazaar-main-title { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3.2rem); color: #FDFBF7; font-weight: 400; line-height: 1.1; letter-spacing: 0.02em; }
.bazaar-subtitle { font-family: var(--font-sans); font-size: 1rem; color: rgba(253, 251, 247, 0.6); max-width: 44rem; margin-top: 1rem; line-height: 1.7; }

.bazaar-external-btn {
  display: inline-flex; align-items: center; gap: 0.65rem; padding: 0.8rem 1.5rem; border: 1px solid rgba(122, 114, 86, 0.3); color: rgba(122, 114, 86, 0.8); text-decoration: none; font-family: var(--font-sans); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 4px; font-weight: 500; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); white-space: nowrap; background-color: rgba(13, 27, 42, 0.2);
}
.bazaar-external-btn:hover { border-color: var(--secondary); color: #FDFBF7; background-color: rgba(122, 114, 86, 0.1); transform: translateY(-1px); }

.bazaar-product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.bazaar-item-card { position: relative; background-color: #09131d; border: 1px solid rgba(122, 114, 86, 0.15); border-radius: 6px; cursor: pointer; padding: 1.5rem; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); overflow: hidden; }
.bazaar-item-card:hover { border-color: rgba(122, 114, 86, 0.5); transform: translateY(-4px); box-shadow: 0 15px 35px rgba(0,0,0,0.3); }
.bazaar-card-hover-overlay { position: absolute; inset: 0; opacity: 0; transition: opacity 0.5s ease; pointer-events: none; z-index: 1; }
.bazaar-item-card:hover .bazaar-card-hover-overlay { opacity: 1; }
.bazaar-card-inner { position: relative; z-index: 5; }

.bazaar-card-media-box {
  height: 14rem; background-color: #FFFFFF; border-radius: 4px; display: flex; align-items: center; justify-content: center; overflow: hidden; margin-bottom: 1.5rem; box-shadow: inset 0 0 20px rgba(0,0,0,0.05);
}
.bazaar-card-media-box img { height: 85%; width: auto; object-fit: contain; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.bazaar-item-card:hover .bazaar-card-media-box img { transform: scale(1.05); }
.bazaar-card-badge-row { margin-bottom: 0.75rem; }
.bazaar-tag-token { display: inline-flex; padding: 0.2rem 0.6rem; font-family: var(--font-sans); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; border-radius: 2px; border: 1px solid transparent; }
.bazaar-card-title { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 400; margin-bottom: 0.25rem; }
.bazaar-card-slogan { font-family: var(--font-sans); font-size: 0.8rem; color: rgba(253, 251, 247, 0.45); margin-bottom: 1.25rem; }
.bazaar-card-footer { padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.05); display: flex; justify-content: space-between; align-items: center; }
.bazaar-size-caption { font-family: var(--font-sans); font-size: 10px; color: rgba(122, 114, 86, 0.6); letter-spacing: 0.05em; text-transform: uppercase; font-weight: 500; }
.bazaar-details-trigger { font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase; font-weight: 600; opacity: 0; transform: translateX(-5px); transition: all 0.3s ease; }
.bazaar-item-card:hover .bazaar-details-trigger { opacity: 1; transform: translateX(0); }

@media(max-width: 639px) { .bazaar-title-split { flex-direction: column; align-items: flex-start; gap: 1.5rem; } }
/* ==========================================================================
   SECTION 5: THE PREPARATION RITUAL MODULE (PART 11/14)
   ========================================================================== */

.ritual-section {
  position: relative; padding: 5rem 5%; background-color: #FDFBF7; overflow: hidden;
}
.radial-glow {
  position: absolute; top: 0; left: 50%; width: 30rem; height: 30rem;
  background: radial-gradient(circle, rgba(122, 114, 86, 0.06) 0%, transparent 70%); transform: translate(-50%, -50%); pointer-events: none;
}
.ritual-container { position: relative; z-index: 10; max-width: 1200px; margin: 0 auto; }
.ritual-header { text-align: center; margin-bottom: 3.5rem; }
.ritual-divider { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 1.25rem; }
.ritual-divider .mini-line { height: 1px; width: 4rem; background-color: var(--secondary); }
.ritual-badge-text { font-family: var(--font-sans); font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--secondary); font-weight: 600; }
.ritual-main-title { font-family: var(--font-serif); font-size: clamp(2.5rem, 5vw, 4rem); color: var(--primary); font-weight: 400; }
.italic-amber { color: var(--secondary); font-style: italic; }
.ritual-subtitle { font-family: var(--font-sans); font-size: 1rem; color: rgba(13, 27, 42, 0.65); max-width: 34rem; margin: 1.25rem auto 0; line-height: 1.7; }

.ritual-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media(min-width: 1024px) { .ritual-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.ritual-steps-column { display: flex; flex-direction: column; }
.step-row { display: flex; gap: 2rem; margin-bottom: 2rem; }
.step-num-box {
  flex-shrink: 0; width: 4rem; height: 4rem; background-color: var(--primary); color: var(--secondary); display: flex; align-items: center; justify-content: center; border-radius: 4px; box-shadow: 0 8px 20px rgba(13, 27, 42, 0.15);
}
.step-num-box span { font-family: var(--font-serif); font-size: 1.65rem; font-weight: 400; }
.step-content { flex: 1; }
.step-content h3 { font-family: var(--font-serif); font-size: 1.65rem; font-weight: 400; color: var(--primary); margin-bottom: 0.5rem; }
.step-content p { font-family: var(--font-sans); font-size: 0.95rem; color: rgba(13, 27, 42, 0.7); line-height: 1.7; }
.step-line-separator { margin-top: 2rem; height: 1px; width: 100%; background: linear-gradient(to right, rgba(122, 114, 86, 0.25), transparent); }
.progress-indicator-block { display: flex; align-items: center; gap: 2rem; padding-top: 2rem; }
.progress-bar-track { flex: 1; height: 6px; background-color: rgba(13, 27, 42, 0.08); border-radius: 50px; overflow: hidden; }
.progress-bar-fill { height: 100%; width: 0%; background: linear-gradient(to right, var(--secondary), #5c543f); border-radius: 50px; transition: width 2s cubic-bezier(0.16, 1, 0.3, 1); }
.progress-bar-fill.active { width: 100%; }
.progress-caption-text { font-family: var(--font-sans); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--secondary); font-weight: 600; white-space: nowrap; }
.media-container-frame { position: relative; border-radius: 6px; overflow: hidden; box-shadow: 0 25px 60px rgba(13, 27, 42, 0.1); }
.ritual-primary-img { width: 100%; height: clamp(18rem, 35vh, 26rem); object-fit: cover; display: block; }
.gradient-scenic-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(13, 27, 42, 0.3), transparent); }
.accent-border-marker { position: absolute; bottom: -1rem; left: -1rem; width: 8rem; height: 8rem; border-left: 2px solid rgba(122, 114, 86, 0.4); border-bottom: 2px solid rgba(122, 114, 86, 0.4); border-radius: 4px; pointer-events: none; z-index: 1; }
/* ==========================================================================
   SECTION 6: PREMIUM WHY US CARD MATRICES (PART 12/14)
   ========================================================================== */

.why-us-section {
  position: relative; padding: 5rem 5%; background-color: var(--primary); overflow: hidden;
}
.why-us-ambient-glow { position: absolute; top: 50%; left: 50%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(122, 114, 86, 0.04) 0%, transparent 75%); transform: translate(-50%, -50%); pointer-events: none; }
.why-us-container { position: relative; z-index: 10; max-width: 1200px; margin: 0 auto; }
.why-us-header { text-align: center; margin-bottom: 3.5rem; }
.why-us-divider { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 1.25rem; }
.why-us-divider .accent-bar-line { height: 1px; width: 4rem; background-color: var(--secondary); }
.why-us-badge-text { font-family: var(--font-sans); font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--secondary); font-weight: 600; }
.why-us-main-title { font-family: var(--font-serif); font-size: clamp(2.5rem, 5vw, 4rem); color: #FDFBF7; font-weight: 400; }

.why-us-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.feature-card { background-color: rgba(13, 27, 42, 0.5); border: 1px solid rgba(122, 114, 86, 0.15); border-radius: 4px; padding: 2.5rem 2rem; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.feature-card:hover { border-color: rgba(122, 114, 86, 0.45); background-color: rgba(13, 27, 42, 0.8); transform: translateY(-2px); }
.feature-icon-box { width: 3.5rem; height: 3.5rem; background-color: rgba(122, 114, 86, 0.1); display: flex; align-items: center; justify-content: center; border-radius: 6px; margin-bottom: 2rem; transition: background-color 0.3s ease; }
.why-us-svg-icon { display: block; width: 1.5rem; height: 1.5rem; }
.feature-card:hover .feature-icon-box { background-color: rgba(122, 114, 86, 0.2); }
.feature-card h3 { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 400; color: #FDFBF7; margin-bottom: 1rem; }
.feature-card p { font-family: var(--font-sans); font-size: 0.9rem; color: rgba(253, 251, 247, 0.55); line-height: 1.7; }

@media(max-width: 1023px) { .decorative-border-box, .inset-pour-box, .accent-border-marker { display: none !important; } }
/* ==========================================================================
   B2B VENDING SYSTEMS & SOCIAL PROOF CARDS (PART 13/14)
   ========================================================================== */

.vending-section {
  position: relative;
  padding: 5rem 5%; 
  background-color: var(--light-bg); /* Flipped to Premium Alabaster Linen Cream */
  overflow: hidden;
  border-top: 1px solid rgba(13, 27, 42, 0.05);
}
.vending-ambient-glow { position: absolute; top: -10%; left: 10%; width: 30rem; height: 30rem; background: radial-gradient(circle, rgba(122, 114, 86, 0.06) 0%, transparent 70%); pointer-events: none; }
.vending-container { position: relative; z-index: 10; max-width: 1200px; margin: 0 auto; }
.vending-header { text-align: center; margin-bottom: 3.5rem; }
.vending-divider { display: flex; align-items: center; justify-content: center; gap: 1.25rem; margin-bottom: 1rem; }
.vending-divider .brass-accent-line { height: 1px; width: 3rem; background-color: var(--secondary); }
.vending-badge-text { font-family: var(--font-sans); font-size: 0.7rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--secondary); font-weight: 600; }
.vending-header .vending-main-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: var(--primary); /* Flipped text color to Deep Midnight Blue */
  font-weight: 400;
  letter-spacing: 0.02em;
}
.vending-subtitle {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: rgba(13, 27, 42, 0.65); /* Flipped subtitle readability tracking */
  max-width: 44rem;
  margin: 1.25rem auto 0;
  line-height: 1.75;
}
.vending-layout-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }

@media(min-width: 1024px) { .vending-layout-grid { grid-template-columns: 1.2fr 1fr; gap: 5rem; } }
.vending-perks-column { display: flex; flex-direction: column; gap: 1.5rem; }
.perk-node-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--white); /* White backing cards for a clean look on light bg */
  padding: 1.5rem;
  border-radius: 6px;
  border: 1px solid rgba(122, 114, 86, 0.18);
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(13, 27, 42, 0.02);
}
.perk-node-card:hover {
  background: var(--white);
  border-color: var(--secondary);
  transform: translateX(4px);
  box-shadow: 0 10px 25px rgba(13, 27, 42, 0.06);
}
.perk-icon-avatar { width: 3rem; height: 3.3rem; background-color: rgba(122, 114, 86, 0.15); display: flex; align-items: center; justify-content: center; border-radius: 4px; flex-shrink: 0; }
.perk-typography h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--primary); /* Flipped perk card titles to Midnight Blue */
  margin-bottom: 0.35rem;
}
.perk-typography p {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: rgba(13, 27, 42, 0.6); /* Flipped perk descriptions */
  line-height: 1.6;
}
.vending-cta-row { margin-top: 1rem; }
.vending-action-anchor { font-family: var(--font-sans); font-size: 0.9rem; color: var(--secondary); text-decoration: none; font-weight: 600; letter-spacing: 0.05em; transition: color 0.3s ease; }
.vending-action-anchor:hover { color: #FDFBF7; }

/* ==========================================================================
   FIXED ASYMMETRIC HARDWARE DISPLAY MATRICES
   ========================================================================== */

.vending-dual-display-frame {
  position: relative;
  width: 100%;
  height: clamp(32rem, 60vh, 42rem); /* Expanded framework container box to prevent overlaps */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.vending-hardware-card {
  position: absolute;
  background-color: var(--white);
  border: 1px solid rgba(122, 114, 86, 0.18);
  border-radius: 4px;
  padding: 0.85rem;
  box-shadow: 0 15px 45px rgba(13, 27, 42, 0.08);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.vending-display-asset {
  width: 100%;
  height: auto;
  border-radius: 2px;
  display: block;
  object-fit: contain !important; /* STRICTLY PREVENTS SQUISHING OR TEXT TRIMMING */
}
.vending-card-label { font-family: var(--font-sans); font-size: 10px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--secondary); font-weight: 600; margin-top: 0.75rem; text-align: center; }
/* 1. Precise Side Profile Dimensions (45 x 70cm Aspect Ratio) */
.side-view-card {
  top: 0;
  left: 4%;
  width: 48%; /* Scaled proportion room */
  z-index: 1;
  opacity: 0.82;
}

.side-view-card .vending-display-asset {
  aspect-ratio: 45 / 70 !important; /* Locks tall, slender bounding geometry */
}

/* 2. Precise Front Interface Dimensions (27 x 24cm Aspect Ratio) */
.front-view-card {
  bottom: 2rem; /* Lifted to reveal the side panel bottom details safely */
  right: 4%;
  width: 54%;
  z-index: 5;
  border-color: rgba(122, 114, 86, 0.35);
  box-shadow: 0 30px 60px rgba(13, 27, 42, 0.22);
}

.front-view-card .vending-display-asset {
  aspect-ratio: 27 / 24 !important; /* Locks squarish layout bounding geometry */
}

/* Interactive Depth Hover Actions */
.vending-dual-display-frame:hover .side-view-card {
  transform: translate(-12px, -12px);
  opacity: 0.95;
  border-color: rgba(122, 114, 86, 0.3);
}

.vending-dual-display-frame:hover .front-view-card {
  transform: translate(12px, 12px);
  border-color: var(--secondary);
  box-shadow: 0 35px 70px rgba(13, 27, 42, 0.28);
}

/* Responsive Overrides for Touchscreens */
@media(max-width: 768px) {
  .vending-dual-display-frame {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
  }
  .vending-hardware-card {
    position: relative !important;
    inset: auto !important;
    width: 85% !important;
    margin: 0 auto;
    transform: none !important;
  }
  .vending-dual-display-frame:hover .side-view-card,
  .vending-dual-display-frame:hover .front-view-card {
    transform: none !important;
  }
}
.testimonials-section {
  position: relative;
  padding: 5rem 5%;
  background-color: var(--primary); /* Flipped to Corporate Midnight Blue */
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.testimonials-radial-glow {
  position: absolute;
  bottom: 0; right: 0;
  width: 20rem; height: 20rem;
  background: radial-gradient(circle, rgba(122, 114, 86, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.testimonials-container { position: relative; z-index: 10; max-width: 1200px; margin: 0 auto; }
.testimonials-header { text-align: center; margin-bottom: 3.5rem; }
.testimonials-divider { display: flex; align-items: center; justify-content: center; gap: 1.25rem; margin-bottom: 1rem; }
.testimonials-divider .mini-bar-line { height: 1px; width: 3rem; background-color: var(--secondary); }
.testimonials-badge-text {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 600;
}
.testimonials-header .testimonials-main-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: #FDFBF7; /* Flipped heading text color to luxury off-white string */
  font-weight: 400;
  letter-spacing: 0.02em;
}
.italic-gold { color: var(--secondary); font-style: italic; font-family: var(--font-serif); }

.testimonials-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 2rem; }
.testimonial-item-card {
  background-color: rgba(13, 27, 42, 0.5); /* Semi-transparent dark cards matching the Why Us theme */
  border: 1px solid rgba(122, 114, 86, 0.15);
  border-radius: 4px;
  padding: 2.25rem;
  box-shadow: none;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-item-card:hover {
  background-color: rgba(13, 27, 42, 0.8);
  transform: translateY(-2px);
  border-color: rgba(122, 114, 86, 0.45);
}
.star-rating-row { display: flex; gap: 0.25rem; margin-bottom: 1.25rem; }
.testimonial-quote-paragraph {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: rgba(253, 251, 247, 0.7); /* Flipped text color for light readability */
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.75rem;
}
.testimonial-footer-meta {
  border-top: 1px solid rgba(122, 114, 86, 0.15);
  padding-top: 1.25rem;
  margin-top: auto;
}

.testimonial-client-name {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: #FDFBF7; /* Flipped reviewer name string color */
}

.testimonial-client-location {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--secondary);
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
  font-weight: 500;
}
@media(max-width: 768px) {
  .vending-dual-display-frame { height: 26rem; }
  .vending-hardware-card { width: 80%; position: relative; inset: auto; margin: 0 auto 1.5rem; }
  .vending-layout-grid { display: flex; flex-direction: column; }
  .side-view-card { display: none !important; }
}
/* ==========================================================================
   FINAL PRODUCTION CLEANED ENDPOINT: CONTACT US & BASE SYSTEMS
   ========================================================================== */

.contact-section {
  position: relative; 
  padding: 5rem 5%; 
  background-color: var(--light-bg); /* Clean Alabaster Linen Cream Canvas */
  overflow: hidden;
  border-top: 1px solid rgba(13, 27, 42, 0.05);
}

.contact-main-title {
  font-family: var(--font-serif); 
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--primary); /* Deep Midnight Blue Text */
  font-weight: 400; 
  line-height: 1.1;
}

.contact-subtitle {
  font-family: var(--font-sans); 
  font-size: 1rem; 
  color: rgba(13, 27, 42, 0.65); 
  max-width: 36rem; 
  margin: 1.25rem auto 0; 
  line-height: 1.7;
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

@media(min-width: 1024px) {
  .contact-layout-grid { grid-template-columns: 2fr 3fr; gap: 6rem; }
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.info-block {
  display: flex; 
  gap: 1.25rem; 
  align-items: flex-start; 
  background: var(--white); 
  padding: 1.5rem; 
  border-radius: 8px; 
  border: 1px solid rgba(122, 114, 86, 0.18); 
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(13, 27, 42, 0.02);
}

.info-block:hover { 
  background: var(--white); 
  border-color: var(--secondary); 
  transform: translateY(-2px); 
  box-shadow: 0 10px 25px rgba(13, 27, 42, 0.06);
}

.info-icon-box {
  width: 3.25rem;
  height: 3.25rem;
  background-color: rgba(122, 114, 86, 0.15); 
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  flex-shrink: 0;
}

.info-text h4 { 
  font-family: var(--font-serif); 
  font-size: 1.25rem; 
  font-weight: 400; 
  color: var(--primary); 
  margin-bottom: 0.35rem; 
}

.info-text p { 
  font-family: var(--font-sans); 
  font-size: 0.9rem; 
  color: rgba(13, 27, 42, 0.6); 
  line-height: 1.6; 
}

.contact-link-anchor {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.contact-link-anchor:hover { color: var(--primary); }

.contact-phone-subnodes { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0.5rem; }
.phone-node .agent-tag { display: block; font-family: var(--font-sans); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(13, 27, 42, 0.45); margin-bottom: 0.15rem; }

.contact-quote-footer {
  margin-top: 0.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(122, 114, 86, 0.15);
}
.contact-quote-footer p {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--secondary);
  line-height: 1.5;
}

/* Elegant Light Form Architecture */
.contact-form-column {
  display: flex; 
  flex-direction: column; 
  gap: 1.5rem; 
  background: var(--white); 
  padding: 2.5rem; 
  border-radius: 12px; 
  border: 1px solid rgba(122, 114, 86, 0.18); 
  box-shadow: 0 10px 40px rgba(13, 27, 42, 0.04);
}

.form-row-dual { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media(min-width: 640px) { .form-row-dual { grid-template-columns: 1fr 1fr; } }

.input-node { display: flex; flex-direction: column; }
.input-node label {
  font-family: var(--font-sans); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--secondary); margin-bottom: 0.6rem; font-weight: 600;
}

.input-node input, .input-node textarea, .input-node select {
  width: 100%; 
  padding: 1rem 1.25rem; 
  background-color: #FAF8F5; 
  border: 1px solid rgba(122, 114, 86, 0.25);
  color: var(--primary); 
  font-family: var(--font-sans); 
  font-size: 0.95rem; 
  border-radius: 6px; 
  outline: none; 
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.input-node input:focus, .input-node textarea:focus, .input-node select:focus {
  border-color: var(--secondary); 
  background-color: var(--white); 
  box-shadow: 0 0 0 3px rgba(122, 114, 86, 0.12);
}

.input-node input::placeholder, .input-node textarea::placeholder { color: rgba(13, 27, 42, 0.35); }
.input-node select option { background-color: var(--white); color: var(--primary); }

.input-node select {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://w3.org' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%237A7256' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat; background-position: right 1rem center; background-size: 1rem; padding-right: 2.5rem;
}

.form-submit-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem;
  background-color: var(--secondary); color: #FDFBF7; border: none; border-radius: 6px;
  padding: 1.1rem; cursor: pointer; font-family: var(--font-sans); font-size: 0.9rem;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; transition: all 0.3s ease; margin-top: 0.5rem;
}
.form-submit-btn:hover { background-color: #5c543f; transform: translateY(-1px); }

.toast-popup-wrapper { position: fixed; bottom: 2rem; right: 2rem; display: flex; flex-direction: column; gap: 0.75rem; z-index: 9999; pointer-events: none; }
.toast-item {
  pointer-events: auto; background: rgba(13, 27, 42, 0.94); backdrop-filter: blur(12px); border: 1px solid rgba(122, 114, 86, 0.3);
  padding: 1.1rem 1.6rem; border-radius: 8px; color: #FDFBF7; box-shadow: 0 15px 40px rgba(0,0,0,0.35); animation: toastIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards; max-width: 22rem;
}
.toast-item h5 { font-family: var(--font-serif); font-size: 1.1rem; color: var(--secondary); margin-bottom: 0.3rem; font-weight: 400; }
.toast-item p { font-family: var(--font-sans); font-size: 0.85rem; color: rgba(253, 251, 247, 0.8); }
.btn-spinner { width: 1.2rem; height: 1.2rem; border: 2px solid rgba(253, 251, 247, 0.3); border-top-color: #FDFBF7; border-radius: 50%; animation: turnSpin 0.6s linear infinite; }

@keyframes toastIn { from { opacity: 0; transform: translateY(25px) scale(0.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes turnSpin { to { transform: rotate(360deg); } }

@media(max-width: 767px) {
  .detail-modal-card { padding: 2rem 1.25rem; }
  .modal-content { padding: 2.5rem 1.5rem; }
  .contact-form-column { padding: 2rem 1.25rem; }
}
/* --- PREMIUM ROUNDED POPUP SCROLLBARS --- */

/* 1. Set the overall width of the scrollbar path */
.detail-modal-card::-webkit-scrollbar {
  width: 8px; /* Sleek, thin bar track footprint */
}

/* 2. Style the actual moving handle thumb piece */
.detail-modal-card::-webkit-scrollbar-thumb {
  background-color: rgba(13, 27, 42, 0.25); /* Subtle dark midnight tint matching your theme */
  border-radius: 10px; /* PERFECTLY ROUNDED CORNERS MATRIX */
  border: 2px solid transparent; /* Acts as padding space to keep it looking clean */
}

/* 3. Add interactive hover state depth to the handle */
.detail-modal-card::-webkit-scrollbar-thumb:hover {
  background-color: var(--secondary); /* Smoothly transitions to Signature Gold on pointer focus */
}

/* 4. Style the static structural background gutter pathway */
.detail-modal-card::-webkit-scrollbar-track {
  background-color: rgba(13, 27, 42, 0.03); /* Soft subtle path layout background tint */
  border-radius: 10px; /* Perfectly rounds out the baseline gutter track layer */
}

/* ==========================================================================
   IMMERSIVE BRAND FOOTER STYLING ENGINE
   ========================================================================== */

.footer-section-immersive {
  position: relative;
  background-color: #060c14;
  border-top: 1px solid rgba(122, 114, 86, 0.15);
  overflow: hidden;
}

.footer-dark-overlay-solid {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--primary) 0%, #060c14 100%);
}

.footer-watermark-canvas {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
}

.watermark-logo-img {
  width: clamp(280px, 45vw, 520px);
  height: auto;
  object-fit: contain;
  opacity: 0.025;
  filter: grayscale(100%);
}

.footer-relative-canvas {
  position: relative;
  z-index: 10;
}

.footer-main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 5% 4rem; /* Tight, elegant padding gaps */
}

.footer-columns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}

@media(min-width: 768px) {
  .footer-columns-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand-logo-img {
  height: 4.5rem;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.brand-brief-summary {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: rgba(253, 251, 247, 0.45);
  line-height: 1.7;
  max-width: 20rem;
}

.footer-link-group-column h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: #FDFBF7;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links-list a {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: rgba(253, 251, 247, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links-list a:hover {
  color: var(--secondary);
}

.footer-bottom-transit-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  background-color: #040810;
}

.transit-bar-inner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

@media(min-width: 640px) {
  .transit-bar-inner-container { flex-direction: row; }
}

.transit-banner-text {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(122, 114, 86, 0.35);
}

.copyright-disclaimer-text {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(253, 251, 247, 0.3);
}

/* Dynamic Flavor Class Maps for script.js Injection Loops */
.color-orange-txt { color: #FB923C; }
.color-orange-bg { background-color: rgba(251, 146, 60, 0.04); }
.tag-orange-spec { background-color: rgba(249, 115, 22, 0.1); color: #FDBA74; border-color: rgba(249, 115, 22, 0.25); }

.color-yellow-txt { color: #FACC15; }
.color-yellow-bg { background-color: rgba(250, 204, 21, 0.04); }
.tag-yellow-spec { background-color: rgba(234, 179, 8, 0.1); color: #FEF08A; border-color: rgba(234, 179, 8, 0.25); }

.color-emerald-txt { color: #34D399; }
.color-emerald-bg { background-color: rgba(52, 211, 153, 0.04); }
.tag-emerald-spec { background-color: rgba(16, 185, 129, 0.1); color: #A7F3D0; border-color: rgba(16, 185, 129, 0.25); }

.color-lime-txt { color: #A3E635; }
.color-lime-bg { background-color: rgba(163, 230, 53, 0.04); }
.tag-lime-spec { background-color: rgba(132, 204, 22, 0.1); color: #E2F8B0; border-color: rgba(132, 204, 22, 0.25); }

.color-amber-txt { color: #FBBF24; }
.color-amber-bg { background-color: rgba(251, 191, 36, 0.04); }
.tag-amber-spec { background-color: rgba(217, 119, 6, 0.1); color: #FDE68A; border-color: rgba(217, 119, 6, 0.25); }

/* ==========================================================================
   UNIFIED DETAIL OVERLAY DRAWERS ENGINE FIX
   ========================================================================== */

/* --- FIXED COMPACT RESPONSIVE DETAILED DRAWERS --- */
.bazaar-detail-modal {
  display: none; 
  position: fixed; 
  inset: 0;
  width: 100%; 
  height: 100%;
  background: rgba(13, 27, 42, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  justify-content: center; 
  align-items: center; 
  z-index: 6000; 
  padding: 1rem; /* Extra viewport breathing room on mobile screens */
}

.detail-modal-card {
  background: #FFFFFF;
  width: 100%;
  max-width: 720px; 
  max-height: 90vh; /* Strictly clamps window to prevent clipping off the screen */
  border-radius: 8px;
  padding: 2rem; /* Compact padding to maximize mobile reading text real estate */
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  color: var(--primary);
  overflow-y: auto; /* Forces a smooth internal scroll inside the card on smaller screens */
  -webkit-overflow-scrolling: touch;
}

.detail-close-btn {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 2rem;
  background: none; border: none;
  cursor: pointer;
  color: var(--primary);
  opacity: 0.5;
  transition: opacity 0.3s ease;
  line-height: 1;
  z-index: 100;
}
.detail-close-btn:hover { opacity: 1; }

.detail-modal-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem; /* Tightened from 2.5rem */
  align-items: start;
}

@media(min-width: 768px) {
  .detail-modal-layout { 
    grid-template-columns: 1fr 1.2fr; 
    gap: 2.5rem; 
  }
}

.detail-media-pane {
  background-color: #FFFFFF;
  border-radius: 4px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(10rem, 25vh, 16rem); /* Scaled down layout height to save mobile space */
  border: 1px solid rgba(13, 27, 42, 0.05);
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.02);
}

.detail-view-img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

.detail-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
  background-color: rgba(122, 114, 86, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.detail-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.detail-subtitle {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #5C524E;
  margin-bottom: 1.5rem;
}

.detail-divider-line {
  height: 1px;
  background-color: rgba(13, 27, 42, 0.08);
  margin-bottom: 1.5rem;
}

.detail-body-block {
  margin-bottom: 1.25rem;
}

.detail-body-block h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--secondary);
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.detail-body-block p {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: rgba(13, 27, 42, 0.8);
  line-height: 1.6;
}

.detail-notes-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.note-tag-token {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  background-color: #FAF6EE;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(13, 27, 42, 0.06);
  border-radius: 4px;
  font-weight: 500;
}

.ingredients-text {
  font-style: italic;
  font-size: 0.85rem !important;
}


/* --- FORM SUBMISSION LOADING SPINNER STATE CONTROLLER --- */
.btn-spinner {
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid rgba(253, 251, 247, 0.3);
  border-top-color: #FDFBF7;
  border-radius: 50%;
  animation: turnSpin 0.6s linear infinite;
  
  /* CRITICAL CORRECTION: Force the spinner hidden by default on page load */
  display: none !important; 
}

/* Let the JavaScript override the display and reveal the wheel only during active transmission */
.form-submit-btn .btn-spinner:not(.hidden) {
  display: inline-block !important;
}

/* --- COMPACT LEFT-ALIGNED HERO TEXT CONTROLLERS --- */
.text-left-alignment {
  text-align: left !important;  /* Locks characters left to create wide sliding tracks */
  max-width: 46rem;
  margin-left: 2rem;           /* Pushes layout away from the extreme left window edge */
}

.text-left-alignment .hero-origin-badge {
  justify-content: flex-start; /* Aligns badging line to the left layout bounds */
}

/* Bulletproof Pure-CSS Entry Motion Engine */
.hero-slide-left-onload {
  opacity: 0;
  transform: translateX(-80px) scale(0.98); /* Expanded pixel tracking space to show clear motion */
  animation: compileHeroSlideLeft 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
  will-change: transform, opacity;
}

@keyframes compileHeroSlideLeft {
  from {
    opacity: 0;
    transform: translateX(-80px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1); /* Snaps smoothly into its permanent production column */
  }
}

/* Center text cleanly again strictly on small phone touchscreens where horizontal space is restricted */
@media(max-width: 768px) {
  .text-left-alignment { text-align: center !important; margin: 0 auto; }
  .text-left-alignment .hero-origin-badge { justify-content: center; }
  .text-left-alignment .badge-line { display: inline-block !important; }
}
/* ==========================================================================
   PRODUCTION RESPONSIVE ENGINE: MOBILE VIEWPORT CONTROLLERS
   ========================================================================== */

@media(max-width: 1023px) {
  /* Compresses the layout grid spacing on tablet/mobile screens */
  .story-grid { 
    gap: 3.5rem; 
  }
  
  /* Hides ONLY the thin gold tracking outline box to prevent screen clutter */
  .decorative-border-box { 
    display: none !important; 
  } 
  
  /* RETAINS THE SMALL POURING IMAGE: Resizes it perfectly for narrow touchscreens */
  .inset-pour-box {
    display: block !important; /* Forces visibility back on */
    width: 8rem !important;
    height: 8rem !important;
    bottom: -1rem !important;
    right: -1rem !important;
    box-shadow: 0 10px 25px rgba(13, 27, 42, 0.2);
    background: transparent !important;
    border: none !important;
  }
}

@media(max-width: 767px) {
  /* Tightens product modal spacing on small mobile viewports */
  .detail-modal-card { 
    padding: 1.5rem 1.25rem; 
  }
  
  /* Compact container alignment for the contact lead input fields */
  .contact-form-column { 
    padding: 2rem 1.25rem; 
  }
}
/* ==========================================================================
   THE CHAI PARADISE - DEFINITIVE STYLESHEET TERMINUS ENDPOINT
   ========================================================================== */

/* ==========================================================================
   THE CHAI PARADISE - END OF FILE STYLESHEET
   ========================================================================== */
