/* ==========================================================================
   RICHMAN COFFEE ROASTERY - LUXURY EMERALD & CHAMPAGNE GOLD DESIGN SYSTEM
   Aesthetics: Deep Forest Emerald, Rich Teal, Champagne Gold, Frosted Mint Glass
   ========================================================================== */

:root {
  /* Color Palette - Authentic Richman Coffee Cup & Logo Palette */
  --bg-primary: #051613;
  --bg-surface: #0a2420;
  --bg-card: #0e322c;
  --bg-card-hover: #14443c;
  --bg-glass: rgba(10, 36, 32, 0.88);
  --bg-glass-card: rgba(14, 50, 44, 0.82);
  
  --emerald-deep: #071f1b;
  --emerald-medium: #0e3d36;
  --emerald-bright: #176558;
  --emerald-accent: #228474;
  --emerald-glow: rgba(23, 101, 88, 0.35);
  
  --gold-primary: #dfc18b;
  --gold-light: #f5e7c8;
  --gold-dark: #b69255;
  --gold-gradient: linear-gradient(135deg, #f7e9cb 0%, #dfc18b 50%, #b69255 100%);
  --gold-glow: rgba(223, 193, 139, 0.28);
  
  --cream-primary: #fbf8f2;
  --cream-muted: #dcd4c7;
  --cream-dim: #9aa8a3;
  
  --accent-roast: #1a423b;
  --accent-olive: #175449;
  --accent-green: #2ecc71;
  --accent-red: #e74c3c;
  --accent-wa: #25d366;
  
  --border-subtle: rgba(223, 193, 139, 0.15);
  --border-gold: rgba(223, 193, 139, 0.38);
  --border-glass: rgba(255, 255, 255, 0.08);

  /* Typography - MyFonts Haute Couture Luxury System */
  --font-display: 'Bodoni Moda', 'Playfair Display', 'Cinzel Decorative', 'Italiana', Georgia, serif;
  --font-serif: 'Bodoni Moda', 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-brand: 'Cinzel Decorative', 'Bodoni Moda', 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Elevation & Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.65);
  --shadow-gold: 0 8px 30px rgba(223, 193, 139, 0.22);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  
  --container-width: 1280px;
}

/* ==========================================================================
   SCROLL-DRIVEN PROGRESS BAR
   ========================================================================== */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.3);
}

.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gold-gradient);
  box-shadow: 0 0 12px rgba(223, 193, 139, 0.85), 0 0 24px rgba(223, 193, 139, 0.45);
  transition: width 0.08s linear;
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--cream-primary);
  scroll-snap-type: y proximity;
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 12% 18%, rgba(22, 101, 88, 0.22) 0%, transparent 45%),
    radial-gradient(circle at 88% 82%, rgba(14, 61, 54, 0.28) 0%, transparent 50%),
    radial-gradient(circle at 50% 40%, rgba(223, 193, 139, 0.05) 0%, transparent 60%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: all var(--transition-normal);
}

/* Typography Utilities */
.font-serif {
  font-family: var(--font-serif);
  letter-spacing: 0.04em;
}

.text-gold-gradient,
.wording-gold {
  background: linear-gradient(135deg, #ffffff 0%, #fff6e0 15%, #ffd582 38%, #e0b462 62%, #fff1d4 82%, #d29d44 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  display: inline-block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.98)) drop-shadow(0 4px 18px rgba(0, 0, 0, 0.92)) drop-shadow(0 0 24px rgba(255, 213, 130, 0.65));
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-primary);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold-primary);
  opacity: 0.6;
}

.section-title {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: clamp(2.3rem, 4.2vw, 3.5rem);
  font-weight: 700;
  color: var(--cream-primary);
  line-height: 1.15;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--cream-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==========================================================================
   1-VIEWPORT PRESENTATION ARCHITECTURE & RESPONSIVE ENGINE
   ========================================================================== */
.viewport-section {
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  position: relative;
  box-sizing: border-box;
  padding: clamp(4.5rem, 8vh, 6rem) 1.5rem clamp(2rem, 4vh, 3.5rem);
  overflow: hidden;
}

.viewport-section > .container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
}

/* Fluid Scaled Section Headers for 1-Viewport Presentation */
.viewport-section .section-header {
  margin-bottom: clamp(1rem, 2.2vh, 2rem);
  text-align: center;
  max-width: 760px;
}

.viewport-section .section-eyebrow {
  font-size: clamp(0.68rem, 1.1vh, 0.78rem);
  margin-bottom: clamp(0.3rem, 0.6vh, 0.5rem);
}

.viewport-section .section-title {
  font-size: clamp(1.75rem, 3.4vh, 2.6rem);
  line-height: 1.18;
  margin-bottom: clamp(0.35rem, 0.7vh, 0.65rem);
}

.viewport-section .section-subtitle {
  font-size: clamp(0.85rem, 1.35vh, 0.98rem);
  line-height: 1.55;
  max-width: 600px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   SECTION 2: OFFICIAL STORE (#shop) - 1-VIEWPORT OPTIMIZATION
   -------------------------------------------------------------------------- */
#shop.viewport-section {
  padding-top: clamp(4.2rem, 7.5vh, 5.5rem);
  padding-bottom: clamp(1.2rem, 2.5vh, 2.5rem);
}

#shop .product-showcase-grid {
  margin: clamp(0.6rem, 1.2vh, 1.25rem) auto 0;
  gap: clamp(1rem, 2vw, 2.2rem);
  max-width: 1140px;
  width: 100%;
}

#shop .product-showcase-card {
  border-radius: 22px;
}

#shop .card-header-status {
  padding: clamp(0.65rem, 1vh, 1rem) clamp(0.9rem, 1.4vw, 1.4rem) clamp(0.25rem, 0.5vh, 0.4rem);
}

#shop .card-media-stage {
  padding: clamp(0.4rem, 0.8vh, 0.85rem) clamp(0.9rem, 1.4vw, 1.4rem);
}

#shop .card-image-halo-frame {
  height: clamp(115px, 15vh, 165px);
  width: clamp(115px, 15vh, 165px);
  margin: 0 auto;
}

#shop .card-content-body {
  padding: clamp(0.65rem, 1.1vh, 1.15rem) clamp(0.9rem, 1.4vw, 1.4rem);
}

#shop .card-product-title {
  font-size: clamp(1.05rem, 1.7vh, 1.3rem);
  margin-bottom: clamp(0.2rem, 0.4vh, 0.35rem);
}

#shop .card-tasting-strip {
  gap: 0.35rem;
  margin-bottom: clamp(0.45rem, 0.8vh, 0.75rem);
}

#shop .tasting-note-pill {
  font-size: 0.65rem;
  padding: 0.18rem 0.55rem;
}

#shop .card-price-panel {
  padding-top: clamp(0.45rem, 0.8vh, 0.75rem);
  margin-top: clamp(0.35rem, 0.6vh, 0.65rem);
}

#shop .card-price-main {
  font-size: clamp(1.35rem, 2.2vh, 1.75rem);
}

#shop .card-actions-dock {
  margin-top: clamp(0.45rem, 0.8vh, 0.75rem);
  gap: 0.6rem;
}

#shop .btn-action-primary,
#shop .btn-action-secondary {
  min-height: clamp(36px, 4.2vh, 42px);
  font-size: 0.78rem;
  padding: 0.45rem 0.95rem;
}

#shop .trust-badges-bar {
  margin-top: clamp(0.75rem, 1.5vh, 1.5rem);
  padding: clamp(0.55rem, 1vh, 0.95rem) clamp(0.85rem, 1.8vw, 1.8rem);
  border-radius: 18px;
  width: 100%;
}

#shop .trust-badge-icon {
  width: clamp(32px, 3.8vh, 38px);
  height: clamp(32px, 3.8vh, 38px);
}

#shop .trust-badge-title {
  font-size: clamp(0.74rem, 1.1vh, 0.84rem);
}

#shop .trust-badge-sub {
  font-size: clamp(0.66rem, 0.9vh, 0.74rem);
}

/* --------------------------------------------------------------------------
   SECTION 3: 3D CUP SHOWCASE (#signature-commercial) - 1-VIEWPORT OPTIMIZATION
/* --------------------------------------------------------------------------
   SECTION 3: 3D CUP SHOWCASE (#signature-commercial) - PROPORTIONAL SCALING
   -------------------------------------------------------------------------- */
#signature-commercial.viewport-section {
  padding-top: clamp(3rem, 5.5vh, 4.5rem);
  padding-bottom: clamp(1.2rem, 2.5vh, 2.5rem);
}

#signature-commercial > .container {
  max-width: 1680px;
  width: 94%;
  padding: 0 clamp(1rem, 2.5vw, 3.5rem);
}

#signature-commercial .signature-cup-banner {
  margin-bottom: 0;
  padding: 0;
  gap: clamp(2.5rem, 5vw, 6.5rem);
  max-width: 1620px;
  width: 100%;
  background: transparent;
  border: none;
  box-shadow: none;
  align-items: center;
  grid-template-columns: 1.12fr 1.28fr;
}

#signature-commercial .signature-cup-stage {
  min-height: clamp(450px, 58vh, 640px);
  width: 100%;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}

#signature-commercial .cup-model-viewer {
  height: clamp(450px, 58vh, 640px);
  width: 100%;
  overflow: visible;
}

#signature-commercial .signature-cup-title {
  font-size: clamp(2.5rem, 4.4vh, 3.6rem);
  line-height: 1.18;
  margin-bottom: clamp(0.85rem, 1.6vh, 1.5rem);
}

#signature-commercial .sig-vol-pill {
  font-size: clamp(0.88rem, 1.35vh, 1rem);
  letter-spacing: 0.18em;
  margin-bottom: clamp(0.55rem, 1vh, 0.85rem);
}

#signature-commercial .signature-cup-desc {
  font-size: clamp(1.06rem, 1.75vh, 1.25rem);
  line-height: 1.78;
  max-width: 620px;
  margin-bottom: clamp(1rem, 1.8vh, 1.4rem);
}

#signature-commercial .signature-cup-actions .btn-primary {
  min-height: clamp(48px, 5.5vh, 58px);
  padding: 0.95rem 2.4rem;
  font-size: clamp(0.92rem, 1.45vh, 1.05rem);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   SECTION 4: MEET THE FOUNDER (#founder) - EXPANSIVE LUXURY SCALING
   -------------------------------------------------------------------------- */
#founder.viewport-section {
  padding-top: clamp(3rem, 5.5vh, 4.5rem);
  padding-bottom: clamp(1.2rem, 2.5vh, 2.5rem);
}

#founder > .container {
  max-width: 1680px;
  width: 94%;
  padding: 0 clamp(1rem, 2.5vw, 3.5rem);
}

#founder .founder-grid {
  margin-top: clamp(1rem, 2vh, 2rem);
  gap: clamp(2.5rem, 4.5vw, 6rem);
  width: 100%;
  max-width: 1620px;
  align-items: center;
  grid-template-columns: 1.12fr 1.32fr;
}

#founder .founder-portrait-card {
  max-width: clamp(540px, 38vw, 680px);
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 50px rgba(22, 101, 88, 0.45);
  border: 2px solid rgba(223, 193, 139, 0.35);
}

#founder .founder-image-wrapper {
  width: 100%;
  border-radius: 28px;
  aspect-ratio: 4 / 3.35;
  overflow: hidden;
}

#founder .founder-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

#founder .founder-floating-wording {
  bottom: clamp(20px, 3vh, 32px);
  left: clamp(22px, 3vw, 34px);
  right: clamp(22px, 3vw, 34px);
}

#founder .founder-float-name {
  font-size: clamp(1.8rem, 3.2vh, 2.5rem);
  letter-spacing: 0.04em;
}

#founder .founder-float-title {
  font-size: clamp(0.92rem, 1.4vh, 1.1rem);
  letter-spacing: 0.12em;
}

#founder .founder-vision-title {
  font-size: clamp(2.2rem, 4vh, 3.2rem);
  line-height: 1.24;
  margin-bottom: clamp(1rem, 2vh, 1.6rem);
}

#founder .founder-quote-box {
  padding: clamp(1.4rem, 2.4vh, 2.2rem) clamp(1.8rem, 2.8vw, 2.8rem);
  margin-bottom: clamp(1.2rem, 2.2vh, 1.8rem);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(14, 52, 45, 0.88) 0%, rgba(6, 24, 21, 0.94) 100%);
  border: 1.8px solid rgba(223, 193, 139, 0.32);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
}

#founder .founder-quote-text {
  font-size: clamp(1.08rem, 1.8vh, 1.28rem);
  line-height: 1.76;
  color: #ffffff;
}

#founder .founder-narrative-text {
  font-size: clamp(1.02rem, 1.65vh, 1.18rem);
  line-height: 1.8;
  margin-bottom: clamp(1.4rem, 2.6vh, 2.2rem);
  color: rgba(220, 212, 199, 0.94);
}

#founder .founder-stats-strip {
  padding: clamp(1.3rem, 2.2vh, 1.8rem) clamp(1.8rem, 2.8vw, 3rem);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(9, 34, 30, 0.92) 0%, rgba(5, 18, 16, 0.97) 100%);
  border: 1.8px solid rgba(223, 193, 139, 0.35);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(223, 193, 139, 0.12);
}

#founder .stat-number {
  font-size: clamp(2.3rem, 4vh, 3.2rem);
  font-weight: 800;
  color: var(--gold-primary);
}

#founder .stat-label {
  font-size: clamp(0.88rem, 1.35vh, 1.05rem);
  font-weight: 600;
  color: var(--cream-dim);
  letter-spacing: 0.08em;
}

/* --------------------------------------------------------------------------
   SECTION 5: CUSTOMER REVIEWS (#reviews) - EXPANSIVE LUXURY SCALING
   -------------------------------------------------------------------------- */
#reviews.viewport-section {
  padding-top: clamp(3rem, 5.5vh, 4.5rem);
  padding-bottom: clamp(1.2rem, 2.5vh, 2.5rem);
}

#reviews > .container {
  max-width: 1680px;
  width: 94%;
  padding: 0 clamp(1rem, 2.5vw, 3.5rem);
}

#reviews .section-title {
  font-size: clamp(2.5rem, 4.6vh, 3.8rem);
}

#reviews .section-subtitle {
  font-size: clamp(1.08rem, 1.85vh, 1.28rem);
  max-width: 800px;
}

#reviews .reviews-grid {
  margin-top: clamp(1.4rem, 2.6vh, 2.5rem);
  gap: clamp(1.8rem, 3vw, 3.2rem);
  width: 100%;
  max-width: 1620px;
  grid-template-columns: repeat(3, 1fr);
}

#reviews .review-card {
  min-height: clamp(380px, 48vh, 480px);
  padding: clamp(2.4rem, 3.8vh, 3.4rem) clamp(2.2rem, 2.8vw, 3.2rem);
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(16, 58, 50, 0.92) 0%, rgba(6, 24, 21, 0.97) 100%);
  border: 1.8px solid rgba(223, 193, 139, 0.35);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.65), 0 0 40px rgba(22, 101, 88, 0.28);
  backdrop-filter: blur(28px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

#reviews .review-card:hover {
  transform: translateY(-8px);
  border-color: rgba(223, 193, 139, 0.7);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.8), 0 0 55px rgba(223, 193, 139, 0.45);
}

#reviews .review-stars {
  font-size: clamp(1.5rem, 2.6vh, 2rem);
  color: #ffb800;
  letter-spacing: 6px;
}

#reviews .review-date {
  font-size: clamp(0.85rem, 1.3vh, 0.98rem);
  color: var(--cream-dim);
}

#reviews .review-title {
  font-size: clamp(1.35rem, 2.2vh, 1.65rem);
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: clamp(0.8rem, 1.5vh, 1.2rem);
  line-height: 1.34;
}

#reviews .review-comment {
  font-size: clamp(1.08rem, 1.75vh, 1.25rem);
  line-height: 1.82;
  color: rgba(240, 235, 225, 0.96);
  margin-bottom: clamp(1.5rem, 2.6vh, 2.2rem);
  flex: 1;
}

#reviews .review-footer {
  padding-top: 1.1rem;
  border-top: 1px solid rgba(223, 193, 139, 0.22);
}

#reviews .review-author strong {
  font-size: clamp(1.05rem, 1.65vh, 1.22rem);
  color: var(--cream-primary);
  font-weight: 700;
}

#reviews .verified-pill {
  font-size: clamp(0.82rem, 1.3vh, 0.94rem);
  padding: 0.3rem 0.8rem;
  background: rgba(46, 204, 113, 0.18);
  border: 1px solid rgba(46, 204, 113, 0.5);
  border-radius: 999px;
  color: #2ecc71;
}

#reviews .review-item-tag {
  font-size: clamp(0.85rem, 1.35vh, 0.98rem);
  color: var(--gold-primary);
  font-weight: 600;
}

/* ==========================================================================
   MOBILE & PHONE RESPONSIVENESS (1-VIEWPORT NATURAL FLOW)
   ========================================================================== */
@media (max-width: 960px) {
  html {
    scroll-snap-type: y proximity;
  }

  .viewport-section {
    min-height: 100dvh;
    height: auto;
    overflow: visible;
    padding: clamp(4.5rem, 8vh, 5.5rem) 1rem clamp(1.5rem, 3vh, 2.5rem);
    justify-content: flex-start;
  }

  .viewport-section > .container {
    justify-content: flex-start;
    height: auto;
  }

  .viewport-section .section-header {
    margin-bottom: 1.25rem;
  }

  .viewport-section .section-title {
    font-size: clamp(1.55rem, 5.5vw, 2.1rem);
  }

  .viewport-section .section-subtitle {
    font-size: 0.86rem;
  }

  /* Shop on Mobile Phones */
  #shop .product-showcase-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    gap: 1.35rem;
    margin-top: 0.85rem;
  }

  #shop .card-image-halo-frame {
    height: 140px;
    width: 140px;
  }

  #shop .trust-badges-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1.35rem;
    padding: 0.85rem 1rem;
  }

  /* 3D Cup on Mobile Phones */
  #signature-commercial .signature-cup-banner {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 1.35rem;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  #signature-commercial .signature-cup-stage {
    min-height: 300px;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  #signature-commercial .cup-model-viewer {
    height: 300px;
  }

  #signature-commercial .signature-cup-title {
    font-size: 1.85rem;
  }

  #signature-commercial .signature-cup-desc {
    font-size: 0.95rem;
  }

  /* Founder on Mobile Phones */
  #founder .founder-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    margin-top: 1.2rem;
  }

  #founder .founder-portrait-card {
    max-width: 100%;
  }

  #founder .founder-vision-title {
    font-size: 1.65rem;
  }

  #founder .founder-quote-text {
    font-size: 0.95rem;
  }

  #founder .founder-narrative-text {
    font-size: 0.92rem;
  }

  #founder .founder-stats-strip {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  #founder .founder-stat-divider {
    display: none;
  }

  /* Reviews on Mobile Phones */
  #reviews .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    gap: 1.25rem;
  }

  #reviews .review-card {
    min-height: auto;
    padding: 1.6rem 1.4rem;
  }
}

@media (max-width: 520px) {
  .viewport-section {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  #shop .trust-badges-bar {
    grid-template-columns: 1fr;
  }

  .founder-floating-wording {
    bottom: 14px;
    left: 16px;
    right: 16px;
  }

  .founder-float-name {
    font-size: 1.35rem;
  }
}

/* ==========================================================================
   TOP NOTIFICATION BAR (LIVE OPERATING HOURS)
   ========================================================================== */
.top-banner {
  background: linear-gradient(90deg, #18110d 0%, #241712 50%, #18110d 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  position: relative;
  z-index: 101;
}

.top-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.live-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  font-weight: 500;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-green);
  box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
  animation: pulseGreen 2s infinite;
}

.pulse-dot.closed {
  background-color: var(--accent-red);
  box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
  animation: pulseRed 2s infinite;
}

@keyframes pulseGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(46, 204, 113, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
  }
}

@keyframes pulseRed {
  0% {
    box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(231, 76, 60, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
  }
}

.top-banner-socials {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--cream-muted);
  font-size: 0.8rem;
  transition: color var(--transition-fast);
}

.top-social-link:hover {
  color: var(--gold-light);
}

.top-social-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ==========================================================================
   20K ULTRA-LUXURY FLOATING TRANSPARENT NAVBAR ARCHITECTURE
   ========================================================================== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 1.5rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  background: transparent !important;
  border: none !important;
}

.site-header.scrolled {
  position: fixed;
  padding: 0.5rem 1.25rem;
}

.navbar-wrapper {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  pointer-events: auto;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 1.6rem;
  border-radius: 9999px;
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.navbar::before {
  display: none !important;
}

.site-header.scrolled .navbar {
  height: 64px;
  background: rgba(10, 10, 10, 0.85) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(212, 163, 115, 0.35);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6) !important;
}

/* Brand Identity */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-logo:hover {
  transform: translateY(-1px);
}

.brand-logo-frame {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  padding: 4px;
  background: radial-gradient(circle at 35% 30%, rgba(18, 69, 60, 0.95), #051613 85%);
  border: 1.5px solid var(--border-gold);
  box-shadow: 0 0 18px rgba(223, 193, 139, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.brand-logo:hover .brand-logo-frame {
  transform: scale(1.08) rotate(4deg);
  border-color: var(--gold-light);
  box-shadow: 0 0 26px rgba(223, 193, 139, 0.6), 0 0 12px rgba(34, 132, 116, 0.5);
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  background: linear-gradient(135deg, #ffffff 0%, #f7ecd7 40%, #dfc18b 70%, #ba864e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.brand-subtitle {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.56rem;
  letter-spacing: 0.24em;
  font-weight: 600;
  color: var(--gold-light);
  opacity: 0.85;
  text-transform: uppercase;
  line-height: 1;
}

/* Nav Links - Floating Glass Island Architecture */
.nav-links-wrapper {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.35rem;
  background: transparent !important;
  padding: 0;
  border-radius: 9999px;
  border: none !important;
  box-shadow: none !important;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
  text-decoration: none;
  position: relative;
  transition: color 0.25s ease, opacity 0.25s ease, text-shadow 0.25s ease;
  white-space: nowrap;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.nav-link::after {
  display: none;
}

.nav-link:hover {
  color: var(--gold-light);
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  text-shadow: 0 0 14px rgba(223, 193, 139, 0.6);
  transform: none;
}

.nav-link.active {
  color: var(--gold-light);
  font-weight: 600;
  background: transparent !important;
  border: none !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  text-shadow: 0 0 16px rgba(223, 193, 139, 0.6);
}

.nav-link.active::before {
  display: none !important;
}

.mobile-nav-drawer .nav-link.active {
  color: var(--gold-light);
  font-weight: 700;
  padding-left: 0.75rem;
  border-left: 3px solid var(--gold-primary);
  background: rgba(212, 163, 115, 0.1);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.btn-cart-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 163, 115, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-primary);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.12);
}

.btn-cart-toggle:hover {
  background: rgba(212, 163, 115, 0.18);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-1px) scale(1.05);
  box-shadow: 0 0 20px rgba(212, 163, 115, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.25);
}

.cart-counter {
  position: absolute;
  top: -3px;
  right: -3px;
  background: linear-gradient(135deg, #dfc18b, #ba864e);
  color: #051613;
  font-size: 0.68rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #061f1a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  letter-spacing: 0;
}

/* 20K Metallic Gold Button */
.btn-navbar-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1.45rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #f7ebd7 0%, #dfc18b 35%, #ba864e 85%, #8f602e 100%);
  color: #061915;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 
    0 4px 20px rgba(212, 163, 115, 0.35),
    0 1px 3px rgba(0, 0, 0, 0.4),
    inset 0 1px 1px rgba(255, 255, 255, 0.7);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-navbar-cta:hover {
  transform: translateY(-2px);
  color: #030d0b;
  box-shadow: 
    0 8px 30px rgba(212, 163, 115, 0.55),
    0 2px 6px rgba(0, 0, 0, 0.4),
    inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

.btn-cta-shimmer {
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.65) 50%, 
    transparent 100%
  );
  transform: skewX(-25deg);
  animation: ctaLuxuryShine 4.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  pointer-events: none;
}

@keyframes ctaLuxuryShine {
  0% { left: -120%; }
  25%, 100% { left: 160%; }
}

.btn-cta-arrow {
  display: inline-flex;
  align-items: center;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-navbar-cta:hover .btn-cta-arrow {
  transform: translateX(3px);
}

/* Minimalist Luxury Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 163, 115, 0.28);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.mobile-menu-btn:hover {
  background: rgba(212, 163, 115, 0.15);
  border-color: var(--gold-primary);
}

.hamburger-line {
  width: 18px;
  height: 1.5px;
  background: var(--cream-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover .hamburger-line {
  background: var(--gold-light);
}

/* ==========================================================================
   20K ULTRA-LUXURY BUTTON DESIGN SYSTEM (20-YEAR VETERAN ARCHITECTURE)
   ========================================================================== */
button,
.btn-primary,
.btn-secondary,
.btn-whatsapp,
.btn-navbar-cta,
.btn-motion-ctrl,
.btn-steam-opt,
.btn-watch-reel,
.btn-cart-toggle,
.btn-close-cart,
.btn-back-to-top,
.qty-btn,
.btn-qty {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  outline: none;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  font-family: var(--font-sans);
  transition: 
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.25s ease,
    filter 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, box-shadow;
}

/* Mechanical haptic compression on click / active touch */
button:active,
.btn-primary:active,
.btn-secondary:active,
.btn-whatsapp:active,
.btn-navbar-cta:active,
.btn-motion-ctrl:active,
.btn-steam-opt:active,
.btn-watch-reel:active,
.btn-cart-toggle:active,
.btn-close-cart:active,
.btn-back-to-top:active,
.qty-btn:active,
.btn-qty:active {
  transform: translateY(1.5px) scale(0.978) !important;
  transition-duration: 0.08s !important;
}

/* 20K Champagne-Gold Ingot Button (Primary CTA) */
.btn-primary {
  gap: 0.65rem;
  padding: 0.85rem 1.85rem;
  min-height: 48px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #061915;
  background: linear-gradient(135deg, 
    #fffbf0 0%, 
    #f5e5c2 18%, 
    #dfc18b 45%, 
    #c49755 75%, 
    #9c6f34 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 
    0 8px 24px -4px rgba(223, 193, 139, 0.42),
    0 2px 6px rgba(0, 0, 0, 0.4),
    inset 0 1px 1px rgba(255, 255, 255, 0.85),
    inset 0 -1px 2px rgba(120, 80, 30, 0.35);
  overflow: hidden;
  z-index: 1;
}

/* Dynamic continuous luxury specular sweep */
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 75%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.65) 50%, 
    transparent 100%
  );
  transform: skewX(-25deg);
  animation: btnGoldSheen 5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  pointer-events: none;
}

@keyframes btnGoldSheen {
  0% { left: -120%; }
  30%, 100% { left: 180%; }
}

/* Dynamic mouse spotlight pseudo-element */
.btn-primary::after {
  content: "";
  position: absolute;
  top: var(--mouse-y, 50%);
  left: var(--mouse-x, 50%);
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.45) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-2.5px);
  color: #020907;
  box-shadow: 
    0 14px 34px -4px rgba(223, 193, 139, 0.65),
    0 4px 12px rgba(0, 0, 0, 0.3),
    inset 0 1px 2px rgba(255, 255, 255, 0.95),
    inset 0 -1px 2px rgba(120, 80, 30, 0.4);
}

.btn-primary svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover svg {
  transform: scale(1.12);
}

.btn-add-cart:hover svg {
  transform: rotate(-10deg) scale(1.15);
}

/* 20K Obsidian Crystal Glass Button (Secondary) */
.btn-secondary {
  gap: 0.65rem;
  padding: 0.85rem 1.75rem;
  min-height: 48px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--cream-primary);
  background: rgba(14, 50, 44, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(223, 193, 139, 0.3);
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.35),
    inset 0 1px 1px rgba(255, 255, 255, 0.15),
    inset 0 0 12px rgba(22, 101, 88, 0.15);
  overflow: hidden;
}

.btn-secondary:hover {
  background: rgba(22, 101, 88, 0.6);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 
    0 10px 28px rgba(0, 0, 0, 0.45),
    0 0 20px rgba(223, 193, 139, 0.25),
    inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

/* 20K Malaysian Emerald Luxury WhatsApp Button */
.btn-whatsapp {
  gap: 0.65rem;
  background: linear-gradient(135deg, #1ad879 0%, #12a65a 50%, #0d7a42 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  box-shadow: 
    0 8px 24px -4px rgba(37, 211, 102, 0.45),
    0 2px 6px rgba(0, 0, 0, 0.4),
    inset 0 1px 1px rgba(255, 255, 255, 0.6) !important;
}

.btn-whatsapp:hover {
  transform: translateY(-2.5px);
  background: linear-gradient(135deg, #2cfc90 0%, #18bd67 50%, #108f4e 100%) !important;
  box-shadow: 
    0 14px 34px -4px rgba(37, 211, 102, 0.65),
    0 0 24px rgba(37, 211, 102, 0.35),
    inset 0 1px 2px rgba(255, 255, 255, 0.8) !important;
  color: #ffffff !important;
}

/* 20K Tactile Feedback Click Ripple */
.btn-tactile-ripple {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(223, 193, 139, 0.3) 40%, transparent 70%);
  pointer-events: none;
  transform: scale(0);
  animation: tactileRippleAnim 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  z-index: 10;
}

@keyframes tactileRippleAnim {
  0% { transform: scale(0); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--cream-primary);
  font-size: 1.5rem;
}

/* ==========================================================================
   HERO SECTION (FIRST SECTION - FULLSCREEN VIDEO)
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
  display: block;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  background: #000 !important;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #000 !important;
}

.hero-bg video,
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #000 !important;
}

.hero-overlay {
  display: none !important;
}

/* Hero Video 2 Left & Right Wording Overlay */
.hero-video2-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 clamp(2rem, 5vw, 6.5rem);
  pointer-events: none;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-video2-overlay.active {
  opacity: 1;
  transform: translateY(0);
}

.hero-wording-left {
  width: auto;
  max-width: clamp(360px, 36vw, 540px);
  text-align: left;
}

.hero-wording-right {
  width: auto;
  max-width: clamp(400px, 38vw, 560px);
  text-align: right;
}

.wording-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: clamp(0.72rem, 0.9vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #ffeed1;
  margin-bottom: 0.65rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.95), 0 0 16px rgba(255, 212, 128, 0.55);
}

.wording-title {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: clamp(1.85rem, 3.1vw, 3.1rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.16;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  margin: 0;
}

.wording-line-top {
  display: block;
  white-space: nowrap;
  color: #ffffff;
  font-weight: 800;
  text-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.98),
    0 4px 18px rgba(0, 0, 0, 0.92),
    0 0 20px rgba(255, 255, 255, 0.25);
}

.wording-line-bottom {
  display: block;
  white-space: nowrap;
  font-weight: 800;
}

@media (max-width: 1024px) {
  .hero-video2-overlay {
    padding: 0 2rem;
  }
  .wording-title {
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  }
}

@media (max-width: 768px) {
  .hero-video2-overlay {
    flex-direction: column;
    justify-content: space-between;
    padding: 6rem 1.5rem 3.5rem;
  }

  .hero-wording-left,
  .hero-wording-right {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .wording-title {
    font-size: clamp(1.35rem, 5.2vw, 1.95rem);
  }

  .wording-line-top,
  .wording-line-bottom {
    white-space: normal;
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
}

.hero-badge-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.roastery-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 163, 115, 0.15);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--cream-primary);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-description {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--cream-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 680px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

/* Quick Social Bar in Hero */
.hero-social-hub {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-social-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cream-dim);
  margin-bottom: 0.85rem;
}

.social-pills-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 1.1rem;
  background: rgba(20, 15, 12, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream-primary);
  backdrop-filter: blur(10px);
  transition: all var(--transition-fast);
}

.social-pill:hover {
  border-color: var(--gold-primary);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 163, 115, 0.2);
}

.social-pill.ig:hover {
  border-color: #e1306c;
  color: #ff8cb0;
}

.social-pill.tiktok:hover {
  border-color: #25f4ee;
  color: #a5fbf8;
}

.social-pill.fb:hover {
  border-color: #1877f2;
  color: #8bbdff;
}

.social-pill svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ==========================================================================
   BRAND STORY & PHILOSOPHY
   ========================================================================== */
.story-section {
  padding: 6rem 0;
  position: relative;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-surface) 50%, var(--bg-primary) 100%);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.story-visual-wrap {
  position: relative;
}

.story-main-img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.story-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.story-main-img:hover img {
  transform: scale(1.03);
}

.story-floating-card {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: var(--bg-glass-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-gold);
  max-width: 240px;
}

.story-floating-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.story-floating-text {
  font-size: 0.82rem;
  color: var(--cream-muted);
  line-height: 1.4;
}

.story-content h3 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--cream-primary);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.story-content p {
  color: var(--cream-muted);
  margin-bottom: 1.5rem;
  font-size: 1.02rem;
  line-height: 1.75;
}

.story-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.pillar-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(212, 163, 115, 0.12);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.pillar-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream-primary);
  margin-bottom: 0.25rem;
}

.pillar-desc {
  font-size: 0.82rem;
  color: var(--cream-dim);
}

/* ==========================================================================
   INTERACTIVE SPECIALTY MENU
   ========================================================================== */
.menu-section {
  padding: 6rem 0;
  background-color: var(--bg-primary);
  position: relative;
}

.menu-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--cream-muted);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-light);
  background: var(--bg-card);
}

.filter-btn.active {
  background: var(--gold-gradient);
  color: #0d0907;
  font-weight: 700;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(223, 193, 139, 0.35);
}

/* ==========================================================================
   3D STEAMING SIGNATURE CUP COMMERCIAL STUDIO (RECREATION OF PINTEREST VIDEO 2)
   ========================================================================== */
.signature-cup-banner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 3.5rem;
  align-items: center;
  box-shadow: none;
  position: relative;
  overflow: visible;
}

.signature-cup-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
  perspective: 1200px;
  user-select: none;
  isolation: isolate;
  overflow: visible;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.cup-model-viewer {
  position: relative;
  z-index: 3;
  width: 100%;
  height: clamp(430px, 46vw, 520px);
  min-width: 0;
  overflow: hidden;
  cursor: grab;
  touch-action: none;
  outline: none;
}

.cup-model-viewer::before,
.cup-model-viewer::after {
  content: '';
  position: absolute;
  left: 50%;
  pointer-events: none;
  border-radius: 50%;
}

.cup-model-viewer::before {
  z-index: 0;
  top: 45%;
  width: 84%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(28, 129, 111, 0.24), rgba(223, 193, 139, 0.08) 46%, transparent 70%);
  filter: blur(15px);
}

.cup-model-viewer::after {
  z-index: 1;
  bottom: 7.5%;
  width: 48%;
  height: 7%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.58);
  filter: blur(17px);
  opacity: 0.75;
}

.cup-model-viewer.is-dragging {
  cursor: grabbing;
}

.cup-model-viewer:focus-visible {
  box-shadow: inset 0 0 0 2px var(--gold-primary), inset 0 0 0 5px rgba(5, 22, 19, 0.92);
}

.cup-model-canvas {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: saturate(1.03) contrast(1.02);
  transition: opacity 0.65s ease;
}

.cup-model-viewer.is-ready .cup-model-canvas {
  opacity: 1;
}

.cup-model-fallback {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: min(82%, 410px);
  max-height: 90%;
  object-fit: contain;
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.75));
  opacity: 0.86;
  transition: opacity 0.45s ease, transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.cup-model-viewer.is-ready .cup-model-fallback {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.96);
}

.cup-model-viewer.has-error .cup-model-fallback {
  mix-blend-mode: normal;
  opacity: 1;
  border-radius: 18px;
}

.cup-model-loading {
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transform: translateX(-50%);
  padding: 0.42rem 0.8rem;
  border: 1px solid rgba(223, 193, 139, 0.34);
  border-radius: var(--radius-pill);
  background: rgba(5, 22, 19, 0.78);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  transition: opacity 0.35s ease 0.5s;
}

.cup-model-viewer.is-ready .cup-model-loading {
  opacity: 0;
  pointer-events: none;
}

.cup-model-viewer.has-error .cup-model-loading {
  opacity: 1;
}

.model-loading-ring {
  width: 13px;
  height: 13px;
  border: 2px solid rgba(223, 193, 139, 0.3);
  border-top-color: var(--gold-light);
  border-radius: 50%;
  animation: modelLoadingSpin 0.8s linear infinite;
}

@keyframes modelLoadingSpin {
  to { transform: rotate(360deg); }
}

.cup-control-hint {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
  backdrop-filter: none;
  box-shadow: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cup-model-viewer.has-interacted .cup-control-hint {
  opacity: 0.52;
  transform: translateY(2px);
}

.cup-model-viewer:hover .cup-control-hint,
.cup-model-viewer:focus-visible .cup-control-hint {
  opacity: 1;
  transform: translateY(0);
}

.cup-spotlight-beam {
  position: absolute;
  top: -20%;
  left: 50%;
  width: 280px;
  height: 380px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at top, rgba(223, 193, 139, 0.18) 0%, rgba(23, 101, 88, 0.1) 45%, transparent 75%);
  filter: blur(25px);
  pointer-events: none;
  z-index: 1;
}

.cup-3d-wrapper {
  position: relative;
  transition: transform 0.12s ease-out;
  transform-style: preserve-3d;
  will-change: transform;
  cursor: grab;
  z-index: 3;
}

.cup-3d-wrapper:active {
  cursor: grabbing;
}

.signature-cup-img {
  max-height: 380px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 25px rgba(223, 193, 139, 0.28));
  transition: filter var(--transition-normal);
  pointer-events: none;
}

.cup-sheen-overlay {
  position: absolute;
  inset: 0;
  border-radius: 40px;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.22) 48%, transparent 70%);
  opacity: 0.6;
  mix-blend-mode: overlay;
  pointer-events: none;
  transition: transform 0.15s ease-out;
}

.cup-steam-canvas {
  position: absolute;
  top: -65px;
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
  height: 220px;
  pointer-events: none;
  z-index: 5;
}

/* Interactive Hotspots */
.cup-hotspot {
  position: absolute;
  z-index: 12;
  cursor: pointer;
}

.hotspot-pin {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform var(--transition-bounce);
}

.hotspot-pin:hover {
  transform: scale(1.25);
}

.hotspot-core {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold-gradient);
  box-shadow: 0 0 12px rgba(223, 193, 139, 1);
  border: 2px solid #ffffff;
  z-index: 2;
}

.hotspot-ripple {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  animation: pulseRadar 2.2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  opacity: 0;
}

@keyframes pulseRadar {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hotspot-popover {
  position: absolute;
  left: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) scale(0.92);
  opacity: 0;
  pointer-events: none;
  width: 240px;
  background: rgba(5, 22, 19, 0.96);
  backdrop-filter: blur(14px);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(223, 193, 139, 0.25);
  transition: all var(--transition-normal);
  z-index: 25;
}

.cup-hotspot:hover .hotspot-popover,
.cup-hotspot.active .hotspot-popover {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  pointer-events: auto;
}

.hotspot-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 0.25rem;
}

.hotspot-heading {
  font-family: var(--font-serif);
  font-size: 0.96rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}

.hotspot-text {
  font-size: 0.8rem;
  color: var(--cream-muted);
  line-height: 1.4;
}

.stage-live-badge {
  position: absolute;
  bottom: 12px;
  left: 20px;
  background: rgba(10, 36, 32, 0.88);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-light);
  backdrop-filter: blur(8px);
  z-index: 8;
}

.stage-live-badge .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 8px #2ecc71;
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.signature-cup-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.signature-cup-tag-row {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.sig-vol-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-primary);
  backdrop-filter: none;
  box-shadow: none;
}

.signature-cup-title {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  color: var(--cream-primary);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.signature-cup-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--cream-muted);
  max-width: 540px;
  margin-bottom: 1.15rem;
}

.brew-steps {
  list-style: none;
  margin: 0 0 0.35rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  max-width: 540px;
}

.brew-step {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.brew-step-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-primary);
}

.brew-step-text {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--cream-muted);
}

.cup-badge-row {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
}

.cup-volume-badge {
  background: rgba(223, 193, 139, 0.15);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
}

.cup-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}

.spec-cell {
  background: rgba(14, 50, 44, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.spec-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--cream-dim);
  letter-spacing: 0.05em;
}

.spec-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cream-primary);
}

.cup-action-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.cup-price-tag {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
}

.steam-control-bar {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  color: var(--cream-muted);
}

.steam-ctrl-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.steam-options-dock {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(5, 22, 19, 0.9);
  border: 1px solid rgba(223, 193, 139, 0.28);
  padding: 0.35rem;
  border-radius: var(--radius-pill);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.55),
    inset 0 1px 3px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.btn-steam-opt {
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream-muted);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-steam-opt:hover {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(223, 193, 139, 0.2);
}

.btn-steam-opt.active {
  background: linear-gradient(135deg, #fff7e6 0%, #dfc18b 50%, #b8864a 100%);
  color: #04120f;
  font-weight: 700;
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 
    0 4px 18px rgba(223, 193, 139, 0.45),
    inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

.steam-hint {
  font-size: 0.75rem;
  color: var(--cream-dim);
  margin-left: auto;
}

/* Steam Intensity Interactive Console Dock */
.steam-control-box {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.8rem 0;
  padding: 1.25rem 1.5rem;
  background: rgba(7, 31, 27, 0.55);
  border: 1px solid rgba(223, 193, 139, 0.22);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08), 0 8px 24px rgba(0, 0, 0, 0.35);
}

.steam-options {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(5, 22, 19, 0.92);
  border: 1px solid rgba(223, 193, 139, 0.25);
  padding: 0.35rem;
  border-radius: var(--radius-pill);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.5),
    inset 0 1px 3px rgba(0, 0, 0, 0.7);
  flex-wrap: wrap;
}

/* 3D Cup Actions Row */
.signature-cup-actions {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

/* 20K Cinematic Watch Reel Button */
.btn-watch-reel {
  gap: 0.75rem;
  padding: 0.85rem 1.75rem;
  min-height: 48px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream-primary);
  background: rgba(14, 50, 44, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(223, 193, 139, 0.35);
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.35),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.btn-watch-reel:hover {
  background: rgba(22, 101, 88, 0.7);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 
    0 10px 28px rgba(0, 0, 0, 0.45),
    0 0 20px rgba(223, 193, 139, 0.3);
}

.play-icon-glow {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff7e6 0%, #dfc18b 50%, #b8864a 100%);
  color: #051613;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(223, 193, 139, 0.6);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.play-icon-glow::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(223, 193, 139, 0.5);
  animation: pulseGlowRing 2s infinite;
}

@keyframes pulseGlowRing {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

.btn-watch-reel:hover .play-icon-glow {
  transform: scale(1.15);
  box-shadow: 0 0 18px rgba(223, 193, 139, 0.9);
}

/* Menu Search Input */
.menu-search-wrap {
  max-width: 480px;
  margin: 0 auto 3rem;
  position: relative;
}

.menu-search-input {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.25rem 0.75rem 2.8rem;
  color: var(--cream-primary);
  font-size: 0.92rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.menu-search-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 163, 115, 0.15);
}

.menu-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cream-dim);
  pointer-events: none;
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.8rem;
}

.menu-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.menu-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.menu-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
}

.menu-card:hover::before {
  opacity: 1;
}

.menu-card-badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.menu-badge {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
}

.badge-signature {
  background: rgba(212, 163, 115, 0.2);
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
}

.badge-roast {
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream-muted);
}

.menu-card-price {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-light);
}

.menu-card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream-primary);
  margin-bottom: 0.5rem;
}

.menu-card-notes {
  font-size: 0.85rem;
  color: var(--cream-dim);
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.tasting-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.tag-note {
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream-muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  margin-top: auto;
}

.btn-add-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(212, 163, 115, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
}

.btn-add-item:hover {
  background: var(--gold-primary);
  color: #0b0806;
}

/* ==========================================================================
   RETAIL BEANS STORE (WHOLE BEANS & DRIP BAGS)
   ========================================================================== */
.beans-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-surface) 50%, var(--bg-primary) 100%);
  position: relative;
}

.beans-featured-banner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 4rem;
  box-shadow: var(--shadow-lg);
}

.beans-banner-img {
  position: relative;
  overflow: hidden;
}

.beans-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.beans-banner-content {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.beans-banner-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--cream-primary);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.beans-banner-desc {
  color: var(--cream-muted);
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.7;
}

.beans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2rem;
}

.bean-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.bean-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.bean-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.bean-origin {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  font-weight: 600;
}

.bean-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--cream-primary);
  margin-top: 0.2rem;
}

.bean-price-tag {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
}

.bean-specs-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  font-size: 0.8rem;
  color: var(--cream-dim);
}

.bean-spec-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.roast-meter {
  display: inline-flex;
  gap: 4px;
}

.roast-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.roast-dot.filled {
  background: var(--gold-primary);
}

.bean-grind-select {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--cream-primary);
  padding: 0.65rem 0.85rem;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  outline: none;
}

.bean-grind-select:focus {
  border-color: var(--gold-primary);
}

.bean-card-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: auto;
}

.bean-card-actions .btn-primary {
  flex: 1;
  justify-content: center;
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
}

/* ==========================================================================
   WORKSHOPS & CUPPING SESSIONS
   ========================================================================== */
.workshop-section {
  padding: 6rem 0;
  position: relative;
}

.workshop-box {
  background: radial-gradient(circle at 10% 20%, #291a13 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 4rem 3.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.workshop-box-content {
  max-width: 680px;
  position: relative;
  z-index: 2;
}

.workshop-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--cream-primary);
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

.workshop-desc {
  color: var(--cream-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.workshop-details-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.workshop-detail-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--cream-primary);
}

.workshop-detail-item svg {
  color: var(--gold-primary);
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   SOCIAL MEDIA HUB & LIVE FEED SHOWCASE
   (Instagram @richman.coffee, TikTok @richman.coffee, Facebook)
   ========================================================================== */
.social-hub-section {
  padding: 6rem 0;
  background-color: var(--bg-surface);
  position: relative;
}

.social-platforms-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.platform-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.8rem;
  min-width: 260px;
  transition: all var(--transition-normal);
}

.platform-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
}

.platform-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.platform-icon-wrap.ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.platform-icon-wrap.tiktok {
  background: #000;
  border: 1px solid #333;
}

.platform-icon-wrap.fb {
  background: #1877f2;
}

.platform-info {
  display: flex;
  flex-direction: column;
}

.platform-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cream-primary);
}

.platform-handle {
  font-size: 0.8rem;
  color: var(--gold-light);
}

/* Social Media Grid (Mock live reels/photos) */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.social-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  aspect-ratio: 4 / 5;
  transition: all var(--transition-normal);
}

.social-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.social-item:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.social-item:hover img {
  transform: scale(1.05);
}

.social-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
  z-index: 2;
}

.social-badge-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.social-platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.65rem;
  font-size: 0.72rem;
  color: #fff;
}

.social-caption-box {
  margin-top: auto;
}

.social-caption-text {
  font-size: 0.85rem;
  color: var(--cream-primary);
  line-height: 1.4;
  margin-bottom: 0.6rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.social-stats-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--cream-dim);
}

.social-stat-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* ==========================================================================
   CUSTOMER REVIEWS & TESTIMONIALS
   ========================================================================== */
.reviews-section {
  padding: 6rem 0;
  background-color: var(--bg-primary);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars-row {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #f1c40f;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--cream-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-dark), var(--bg-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--cream-primary);
  border: 1px solid var(--border-gold);
}

.author-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream-primary);
}

.author-source {
  font-size: 0.75rem;
  color: var(--cream-dim);
}

/* ==========================================================================
   LOCATION & OPERATING HOURS (RAWANG)
   ========================================================================== */
.location-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-primary) 100%);
  position: relative;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: stretch;
}

.location-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.loc-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.loc-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(212, 163, 115, 0.12);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.loc-text h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream-primary);
  margin-bottom: 0.35rem;
}

.loc-text p {
  color: var(--cream-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
  font-size: 0.88rem;
}

.hours-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-table td {
  padding: 0.45rem 0;
  color: var(--cream-muted);
}

.hours-table td.day {
  font-weight: 500;
  color: var(--cream-primary);
}

.hours-table td.closed-day {
  color: var(--accent-red);
  font-weight: 600;
}

.loc-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
  min-height: 420px;
  position: relative;
  background: #1e1e1e;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 420px;
  filter: grayscale(80%) invert(92%) contrast(85%);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #080605;
  border-top: 1px solid var(--border-subtle);
  padding: clamp(3.5rem, 6vh, 5rem) 0 clamp(1.5rem, 3vh, 2.5rem);
  position: relative;
  scroll-snap-align: start;
  width: 100%;
}

.site-footer > .container {
  max-width: 100%;
  width: 100%;
  padding: 0 clamp(2rem, 5vw, 6rem);
  box-sizing: border-box;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  justify-content: space-between;
  gap: clamp(2rem, 4vw, 5.5rem);
  margin-bottom: clamp(2.5rem, 5vh, 4rem);
  width: 100%;
}

.footer-grid:has(> :nth-child(4)) {
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
}

.footer-brand p {
  color: var(--cream-dim);
  font-size: clamp(0.9rem, 1.4vh, 1rem);
  line-height: 1.75;
  margin-top: 1.2rem;
  max-width: 480px;
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.8vh, 1.35rem);
  color: var(--cream-primary);
  margin-bottom: clamp(1rem, 2vh, 1.5rem);
  letter-spacing: 0.06em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-link {
  font-size: clamp(0.88rem, 1.4vh, 0.98rem);
  color: var(--cream-dim);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--gold-light);
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.social-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(14, 50, 44, 0.7);
  border: 1px solid rgba(223, 193, 139, 0.35);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.social-icon-btn svg {
  width: 20px;
  height: 20px;
}

.social-icon-btn:hover {
  background: var(--gold-gradient);
  color: #051613;
  border-color: transparent;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 22px rgba(223, 193, 139, 0.45);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: clamp(0.82rem, 1.3vh, 0.92rem);
  color: var(--cream-dim);
  width: 100%;
}

/* ==========================================================================
   CART DRAWER & MODALS
   ========================================================================== */
.cart-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.cart-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100vh;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-gold);
  z-index: 201;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.cart-drawer-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--cream-primary);
}

.btn-close-cart {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(223, 193, 139, 0.25);
  color: var(--cream-muted);
  font-size: 1.15rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-close-cart:hover {
  background: rgba(223, 193, 139, 0.22);
  border-color: var(--gold-primary);
  color: #ffffff;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 0 18px rgba(223, 193, 139, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.cart-items-container {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cart-empty-message {
  text-align: center;
  color: var(--cream-dim);
  margin: auto 0;
  padding: 2rem 0;
}

.cart-empty-icon {
  font-size: 3rem;
  color: var(--gold-primary);
  margin-bottom: 1rem;
  opacity: 0.5;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1rem;
  gap: 0.75rem;
}

.cart-item-details {
  flex: 1;
}

.cart-item-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--cream-primary);
  margin-bottom: 0.2rem;
}

.cart-item-meta {
  font-size: 0.78rem;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.cart-item-price {
  font-weight: 700;
  color: var(--cream-primary);
  font-size: 0.92rem;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(223, 193, 139, 0.25);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.qty-btn:hover {
  background: rgba(223, 193, 139, 0.25);
  border-color: var(--gold-primary);
  color: #ffffff;
  transform: scale(1.15);
  box-shadow: 0 0 14px rgba(223, 193, 139, 0.45);
}

.qty-number {
  font-size: 0.88rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.cart-drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.92rem;
  color: var(--cream-muted);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream-primary);
}

.cart-total-amount {
  color: var(--gold-light);
  font-family: var(--font-serif);
}

.cart-notes-input {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--cream-primary);
  padding: 0.65rem 0.85rem;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  outline: none;
}

/* Modal Windows (Customization & Workshop) */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 250;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: opacity var(--transition-normal);
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  padding: 2.2rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform var(--transition-normal);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-backdrop.open .modal-box {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--cream-primary);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-bottom: 0.45rem;
}

.form-control {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--cream-primary);
  font-size: 0.92rem;
  outline: none;
}

.form-control:focus {
  border-color: var(--gold-primary);
}

/* Toast Notification */
.toast-notice {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--bg-card);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  color: var(--cream-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-gold);
  z-index: 300;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-normal);
}

.toast-notice.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   MOBILE BOTTOM BAR
   ========================================================================== */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(14, 10, 8, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-subtle);
  z-index: 95;
  padding: 0.5rem 1rem;
}

.mobile-bottom-nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: var(--cream-muted);
  font-size: 0.72rem;
  font-weight: 500;
}

.mobile-nav-item.active,
.mobile-nav-item:hover {
  color: var(--gold-light);
}

.mobile-nav-item svg {
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .nav-links-wrapper {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .story-grid,
  .location-grid,
  .beans-featured-banner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links-wrapper {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .site-header {
    padding: 0.6rem 0.85rem;
  }

  .site-header.scrolled {
    padding: 0.4rem 0.85rem;
  }

  .navbar {
    height: 62px;
    padding: 0 1.1rem;
  }

  .brand-logo-frame {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 1.05rem;
    letter-spacing: 0.14em;
  }

  .brand-subtitle {
    font-size: 0.5rem;
  }

  .mobile-bottom-bar {
    display: block;
  }

  body {
    padding-bottom: 60px;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .menu-grid,
  .beans-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .top-banner-socials {
    display: none;
  }
}

@media (max-width: 540px) {
  .btn-navbar-cta {
    padding: 0.52rem 0.95rem;
    font-size: 0.74rem;
  }

  .btn-navbar-cta .btn-cta-arrow {
    display: none;
  }
}

/* ==========================================================================
   MOBILE NAV OVERLAY & DRAWER
   ========================================================================== */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 190;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-drawer {
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--bg-surface);
  border-right: 1px solid var(--border-gold);
  padding: 2rem 1.5rem;
  transform: translateX(-100%);
  transition: transform var(--transition-normal);
}

.mobile-nav-overlay.open .mobile-nav-drawer {
  transform: translateX(0);
}

/* ==========================================================================
   SCROLL-DRIVEN REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  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: opacity, transform;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  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: opacity, transform;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  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: opacity, transform;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  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: opacity, transform;
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger Delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ==========================================================================
   FLOATING & AMBIENT MOTION KEYFRAMES
   ========================================================================== */
@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

.floating-anim {
  animation: floatSlow 6s ease-in-out infinite;
}

/* Hero Background Parallax Container */
.hero-bg img {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* ==========================================================================
   INTERACTIVE CARD SHIMMER & 3D TILT EFFECT
   ========================================================================== */
.menu-card, .bean-card, .platform-card, .review-card {
  position: relative;
  perspective: 1000px;
  transform-style: preserve-3d;
  will-change: transform;
}

/* Card Specular Glare / Shimmer */
.card-shine {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(212, 163, 115, 0.2) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.menu-card:hover .card-shine,
.bean-card:hover .card-shine {
  opacity: 1;
}

/* Cart Bump Animation */
@keyframes cartBump {
  0% { transform: scale(1); }
  25% { transform: scale(1.4) rotate(-10deg); color: var(--gold-light); }
  50% { transform: scale(1.15) rotate(8deg); }
  75% { transform: scale(1.25) rotate(-4deg); }
  100% { transform: scale(1) rotate(0); }
}

.cart-bump {
  animation: cartBump 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Menu Item Filter Transition */
@keyframes fadeInUpItem {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-item-enter {
  animation: fadeInUpItem 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ==========================================================================
   BACK-TO-TOP BUTTON WITH CIRCULAR SCROLL PROGRESS
   ========================================================================== */
.btn-back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(7, 31, 27, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(223, 193, 139, 0.4);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(223, 193, 139, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  transform: translateY(24px) scale(0.8);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.btn-back-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  background: rgba(14, 50, 44, 0.95);
  border-color: var(--gold-light);
  color: #ffffff;
  box-shadow: 
    0 14px 40px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(223, 193, 139, 0.5),
    inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  transform: rotate(-90deg);
}

.progress-ring-circle {
  stroke: var(--gold-primary);
  stroke-width: 2.5;
  fill: transparent;
  stroke-dasharray: 144.5;
  stroke-dashoffset: 144.5;
  transition: stroke-dashoffset 0.1s linear;
}

@media (max-width: 768px) {
  .btn-back-to-top {
    bottom: 75px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
  .progress-ring {
    width: 44px;
    height: 44px;
  }
}

/* ==========================================================================
   MEET THE FOUNDER: NATASHA HOZIER (HAUTE ROASTERY EDITORIAL)
   ========================================================================== */
.founder-section {
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0;
  background: linear-gradient(180deg, #051613 0%, #08241e 50%, #051613 100%);
  border-top: 1px solid rgba(223, 193, 139, 0.15);
  border-bottom: 1px solid rgba(223, 193, 139, 0.15);
}

.founder-ambient-glow {
  position: absolute;
  top: 50%;
  left: 20%;
  width: 700px;
  height: 700px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(23, 101, 88, 0.35) 0%, rgba(223, 193, 139, 0.08) 45%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.founder-watermark {
  position: absolute;
  top: 10%;
  right: -2%;
  font-family: var(--font-serif);
  font-size: 18rem;
  font-weight: 900;
  color: rgba(223, 193, 139, 0.02);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.founder-container {
  position: relative;
  z-index: 2;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4.5rem;
  align-items: center;
  margin-top: 3.5rem;
}

@media (max-width: 960px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.founder-visual-column {
  position: relative;
}

.founder-portrait-card {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
}

.founder-image-wrapper {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1.5px solid rgba(223, 193, 139, 0.38);
  border-top: 1.5px solid rgba(255, 248, 230, 0.7);
  box-shadow: 
    0 28px 70px rgba(0, 0, 0, 0.85),
    0 0 45px rgba(23, 101, 88, 0.35),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
  background: #000;
}

.founder-portrait-img {
  width: 100%;
  aspect-ratio: 1024 / 752;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease;
  filter: brightness(0.98) contrast(1.03);
}

.founder-portrait-card:hover .founder-portrait-img {
  transform: scale(1.025);
  filter: brightness(1) contrast(1.05);
}

.founder-portrait-halo {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

/* Pure Floating Wording Without Box or Background */
.founder-floating-wording {
  position: absolute;
  bottom: 22px;
  left: 24px;
  right: 24px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 0 !important;
  margin: 0 !important;
  pointer-events: none;
  z-index: 5;
}

.founder-float-name {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.5vw, 1.95rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 0.25rem;
  text-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.95),
    0 4px 16px rgba(0, 0, 0, 0.85);
}

.founder-float-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.95),
    0 3px 12px rgba(0, 0, 0, 0.9);
}

/* Founder Content Column */
.founder-content-column {
  display: flex;
  flex-direction: column;
}

.founder-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.2rem;
}

.founder-eyebrow-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-primary);
  background: rgba(223, 193, 139, 0.12);
  border: 1px solid rgba(223, 193, 139, 0.35);
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
}

.founder-line-divider {
  width: 30px;
  height: 1px;
  background: rgba(223, 193, 139, 0.4);
}

.founder-location {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--cream-dim);
  text-transform: uppercase;
}

.founder-vision-title {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  font-weight: 700;
  line-height: 1.18;
  color: #ffffff;
  margin: 0 0 1.5rem 0;
  letter-spacing: 0.03em;
}

.founder-quote-box {
  position: relative;
  background: rgba(14, 50, 44, 0.45);
  border-left: 3px solid var(--gold-primary);
  border-radius: 0 18px 18px 0;
  padding: 1.4rem 1.8rem;
  margin-bottom: 1.35rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.quote-mark-large {
  position: absolute;
  top: -10px;
  right: 15px;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: rgba(223, 193, 139, 0.15);
  line-height: 1;
  pointer-events: none;
}

.founder-quote-text {
  font-style: italic;
  color: #f7ebd0;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

.founder-narrative-text {
  font-size: 0.94rem;
  color: rgba(220, 212, 199, 0.88);
  line-height: 1.7;
  margin: 0 0 1.6rem 0;
}

/* Founder Stats Strip */
.founder-stats-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  background: rgba(7, 28, 24, 0.8);
  border: 1px solid rgba(223, 193, 139, 0.25);
  border-radius: 18px;
  margin-bottom: 2rem;
  backdrop-filter: blur(12px);
}

.founder-stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.stat-label {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--cream-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.founder-stat-divider {
  width: 1px;
  height: 35px;
  background: rgba(223, 193, 139, 0.2);
}

/* Founder Signature Row */
.founder-signature-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1rem;
}

.founder-sign-block {
  display: flex;
  flex-direction: column;
}

.founder-signature-script {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.85rem;
  color: var(--gold-primary);
  letter-spacing: 0.04em;
  text-shadow: 0 0 15px rgba(223, 193, 139, 0.35);
  margin-bottom: 0.2rem;
}

.founder-sign-title {
  font-size: 0.78rem;
  color: var(--cream-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.founder-cta-btn {
  padding: 0.85rem 1.6rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ==========================================================================
   THE STORY OF RICHMAN COFFEE SECTION (#story)
   ========================================================================== */
.story-section {
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0;
  background: linear-gradient(180deg, #051613 0%, #08241e 50%, #051613 100%);
  border-top: 1px solid rgba(223, 193, 139, 0.15);
  border-bottom: 1px solid rgba(223, 193, 139, 0.15);
}

.story-pattern-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/rc-pattern.svg');
  background-size: 80px 80px;
  opacity: 0.05;
  pointer-events: none;
}

.story-ambient-glow {
  position: absolute;
  top: 50%;
  right: 15%;
  width: 650px;
  height: 650px;
  transform: translate(50%, -50%);
  background: radial-gradient(circle, rgba(23, 101, 88, 0.3) 0%, rgba(223, 193, 139, 0.06) 45%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.story-container {
  position: relative;
  z-index: 2;
}

.story-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 4rem;
}

.story-main-title {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: clamp(2.3rem, 4.2vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 15%, var(--gold-light) 60%, var(--gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.story-main-subtitle {
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  color: var(--cream-muted);
  line-height: 1.65;
  max-width: 760px;
  margin: 0 auto;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4.5rem;
  align-items: center;
}

.story-visual-wrap {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}

.story-main-img {
  position: relative;
  background: radial-gradient(circle at center, #0e3d36 0%, #051613 100%);
  padding: 2.2rem 1.8rem;
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(223, 193, 139, 0.25);
  border-top: 1.5px solid rgba(255, 248, 230, 0.5);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(23, 101, 88, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);
  text-align: center;
  overflow: hidden;
}

.story-cup-img {
  max-height: 440px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.65));
  display: block;
  margin: 0 auto;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-visual-wrap:hover .story-cup-img {
  transform: scale(1.03);
}

.story-floating-card {
  position: absolute;
  bottom: 18px;
  right: 22px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 0 !important;
  max-width: 260px;
  z-index: 5;
  text-align: left;
}

.floating-anim {
  animation: floatSlow 4s ease-in-out infinite alternate;
}

@keyframes floatSlow {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-8px);
  }
}

.story-floating-number {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
  text-shadow: 
    0 2px 5px rgba(0, 0, 0, 0.95),
    0 4px 18px rgba(0, 0, 0, 0.85),
    0 0 20px rgba(223, 193, 139, 0.35);
}

.story-floating-text {
  font-size: 0.86rem;
  color: #ffffff;
  line-height: 1.45;
  font-weight: 500;
  text-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.95),
    0 3px 12px rgba(0, 0, 0, 0.85);
}

.story-eyebrow-tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 0.8rem;
}

.story-vision-title {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: clamp(2rem, 2.9vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.18;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 1.5rem 0;
}

.story-text {
  font-size: 0.95rem;
  color: rgba(220, 212, 199, 0.88);
  line-height: 1.75;
  margin-bottom: 1.3rem;
}

.story-text strong {
  color: #ffffff;
  font-weight: 600;
}

.story-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem 2.2rem;
  margin: 2rem 0;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(223, 193, 139, 0.18);
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pillar-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(223, 193, 139, 0.1);
  border: 1px solid rgba(223, 193, 139, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.pillar-title {
  font-size: 0.96rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.pillar-desc {
  font-size: 0.84rem;
  color: rgba(247, 243, 235, 0.65);
  line-height: 1.55;
}

.story-cta-wrapper {
  margin-top: 2.2rem;
}

.btn-story-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #fcead2 0%, #dfc18b 50%, #b89758 100%);
  color: #1a160f;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.95rem 2.4rem;
  border-radius: 9999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 
    0 8px 30px rgba(223, 193, 139, 0.4),
    inset 0 1px 1px rgba(255, 255, 255, 0.6);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-story-cta:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 12px 38px rgba(223, 193, 139, 0.6),
    inset 0 1px 1px rgba(255, 255, 255, 0.8);
  filter: brightness(1.04);
  color: #0d0c08;
}

.btn-story-cta svg {
  transition: transform 0.3s ease;
}

.btn-story-cta:hover svg {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .story-visual-wrap {
    max-width: 460px;
  }

  .story-floating-card {
    right: 5px;
    bottom: -15px;
  }
}

@media (max-width: 680px) {
  .story-pillars {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .story-floating-card {
    position: static;
    margin: 1.2rem auto 0;
    max-width: 100%;
    text-align: left;
  }

  .btn-story-cta {
    width: 100%;
    padding: 0.95rem 1.5rem;
    font-size: 0.86rem;
  }
}

/* 3 Pillars Grid */
.brand-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 920px;
  margin: 0 auto;
}

.brand-pillar-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.4rem;
  text-align: center;
  transition: all var(--transition-normal);
}

.brand-pillar-card:hover {
  border-color: var(--gold-primary);
  background: var(--bg-card);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.b-pillar-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.b-pillar-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.b-pillar-desc {
  font-size: 0.84rem;
  color: var(--cream-muted);
  line-height: 1.5;
}

/* ==========================================================================
   COMMERCIAL REEL CINEMA MODAL (PINTEREST VIDEO 2 RECREATION)
   ========================================================================== */
.reel-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 12, 10, 0.94);
  backdrop-filter: blur(16px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  padding: 1.2rem;
}

.reel-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.reel-modal-container {
  position: relative;
  max-width: 390px;
  width: 100%;
}

.btn-close-reel {
  position: absolute;
  top: -48px;
  right: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(223, 193, 139, 0.35);
  color: var(--gold-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-close-reel:hover {
  background: rgba(223, 193, 139, 0.25);
  border-color: var(--gold-primary);
  color: #ffffff;
  transform: rotate(90deg) scale(1.12);
  box-shadow: 0 0 20px rgba(223, 193, 139, 0.5);
}

.reel-frame {
  background: #051613;
  border: 2px solid var(--border-gold);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.95), 0 0 45px rgba(223, 193, 139, 0.3);
  display: flex;
  flex-direction: column;
  aspect-ratio: 9 / 16;
  max-height: 86vh;
  position: relative;
}

.reel-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(5, 22, 19, 0.95) 0%, transparent 100%);
  z-index: 10;
}

.reel-brand-tag {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.reel-mini-logo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--gold-primary);
  background: var(--bg-surface);
  object-fit: contain;
}

.reel-brand-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
}

.reel-audio-name {
  font-size: 0.68rem;
  color: var(--gold-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 190px;
}

.reel-sponsored-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: rgba(223, 193, 139, 0.2);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
}

.reel-stage {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.reel-ambient-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(23, 101, 88, 0.55) 0%, rgba(223, 193, 139, 0.15) 50%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.reel-pattern-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/rc-pattern.svg');
  background-size: 64px 64px;
  opacity: 0.12;
  animation: bgDrift 30s linear infinite;
  pointer-events: none;
}

.reel-cup-showcase {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: reelCupFloat 4s ease-in-out infinite alternate;
}

@keyframes reelCupFloat {
  0% { transform: translateY(0) rotate(-1deg) scale(0.98); }
  100% { transform: translateY(-12px) rotate(1.5deg) scale(1.02); }
}

.reel-cup-img {
  max-height: 270px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 20px rgba(223, 193, 139, 0.35));
}

.reel-cup-shadow {
  width: 140px;
  height: 16px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  filter: blur(8px);
  margin-top: -10px;
}

/* Steam Wisps in Reel */
.reel-steam-wisps {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 60px;
  pointer-events: none;
}

.steam-wisp {
  position: absolute;
  bottom: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.38) 0%, transparent 70%);
  filter: blur(5px);
  animation: steamRiseReel 2.8s ease-in infinite;
}

.wisp-1 { left: 20%; width: 22px; height: 22px; animation-delay: 0.2s; }
.wisp-2 { left: 45%; width: 28px; height: 28px; animation-delay: 1.1s; }
.wisp-3 { left: 60%; width: 18px; height: 18px; animation-delay: 1.9s; }

@keyframes steamRiseReel {
  0% { opacity: 0; transform: translateY(0) scale(0.6); }
  35% { opacity: 0.6; transform: translateY(-15px) scale(1.1) translateX(3px); }
  100% { opacity: 0; transform: translateY(-45px) scale(1.8) translateX(-5px); }
}

/* Captions Box */
.reel-captions-box {
  position: absolute;
  bottom: 15px;
  left: 1.2rem;
  right: 1.2rem;
  z-index: 10;
}

.reel-caption-item {
  display: none;
  background: rgba(5, 22, 19, 0.88);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  backdrop-filter: blur(10px);
  animation: fadeInUpCaption 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.reel-caption-item.active {
  display: block;
}

@keyframes fadeInUpCaption {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}

.caption-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  margin-bottom: 0.2rem;
}

.caption-text {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}

/* Reel Footer Controls */
.reel-footer {
  padding: 0.8rem 1.2rem 1.2rem;
  background: linear-gradient(0deg, rgba(5, 22, 19, 0.98) 0%, rgba(5, 22, 19, 0.7) 80%, transparent 100%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.reel-progress-track {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.reel-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gold-gradient);
  box-shadow: 0 0 10px rgba(223, 193, 139, 0.8);
  transition: width 0.1s linear;
}

.reel-ctrl-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reel-play-btn {
  background: var(--gold-gradient);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #051613;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 
    0 4px 16px rgba(223, 193, 139, 0.45),
    inset 0 1px 1px rgba(255, 255, 255, 0.8);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.reel-play-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 0 22px rgba(223, 193, 139, 0.7);
}

.reel-eq {
  display: flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 15px;
}

.eq-col {
  width: 2.5px;
  background: var(--gold-light);
  border-radius: 1px;
  animation: eqBounce 0.7s ease-in-out infinite alternate;
}

.eq-col:nth-child(1) { height: 40%; animation-delay: 0.1s; }
.eq-col:nth-child(2) { height: 90%; animation-delay: 0.3s; }
.eq-col:nth-child(3) { height: 60%; animation-delay: 0.5s; }
.eq-col:nth-child(4) { height: 100%; animation-delay: 0.2s; }
.eq-col:nth-child(5) { height: 75%; animation-delay: 0.4s; }
.eq-col:nth-child(6) { height: 50%; animation-delay: 0.6s; }

.reel-timer {
  font-size: 0.72rem;
  color: var(--cream-dim);
  font-variant-numeric: tabular-nums;
}

.btn-reel-cta {
  background: linear-gradient(135deg, #1ad879 0%, #12a65a 50%, #0d7a42 100%);
  color: #ffffff;
  padding: 0.85rem 1.25rem;
  min-height: 48px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 
    0 8px 24px -4px rgba(37, 211, 102, 0.45),
    inset 0 1px 1px rgba(255, 255, 255, 0.6);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-reel-cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #2cfc90 0%, #18bd67 50%, #108f4e 100%);
  box-shadow: 
    0 12px 30px -4px rgba(37, 211, 102, 0.6),
    0 0 20px rgba(37, 211, 102, 0.35);
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS FOR RECREATION SECTIONS
   ========================================================================== */
@media (max-width: 992px) {
  .signature-cup-banner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .signature-cup-stage {
    min-height: 360px;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .signature-cup-img {
    max-height: 320px;
  }

  .brand-pillars-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .brand-motion-stage {
    padding: 2.2rem 1.2rem;
  }

  .brand-motion-emblem-wrap {
    width: 190px;
    height: 220px;
  }

  .brand-motion-logo-img {
    max-width: 140px;
  }

  .motion-title {
    letter-spacing: 0.16em;
  }

  .cup-specs-grid {
    grid-template-columns: 1fr;
  }

  .hotspot-popover {
    width: 200px;
    left: auto;
    right: 0;
    top: calc(100% + 8px);
    transform: none;
  }

  .cup-hotspot:hover .hotspot-popover,
  .cup-hotspot.active .hotspot-popover {
    transform: none;
  }

  .reel-frame {
    border-radius: 20px;
    max-height: 80vh;
  }

  .cup-model-viewer {
    height: 420px;
  }

  .cup-control-hint {
    right: 50%;
    bottom: 13px;
    transform: translateX(50%);
  }

  .cup-model-viewer.has-interacted .cup-control-hint {
    transform: translateX(50%) translateY(2px);
  }

  .cup-model-viewer:hover .cup-control-hint,
  .cup-model-viewer:focus-visible .cup-control-hint {
    transform: translateX(50%);
  }

  .stage-live-badge {
    top: 12px;
    bottom: auto;
    left: 12px;
  }
}

/* ==========================================================================
   SUBPAGE HERO BANNER & BREADCRUMBS
   ========================================================================== */
.subpage-hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
  background: radial-gradient(ellipse at 50% 0%, rgba(18, 69, 60, 0.7) 0%, var(--bg-primary) 75%);
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}

.subpage-hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/rc-pattern.svg');
  background-size: 72px 72px;
  opacity: 0.08;
  pointer-events: none;
}

.subpage-hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

.breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--cream-dim);
  background: rgba(10, 36, 32, 0.7);
  border: 1px solid var(--border-subtle);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.2rem;
}

.breadcrumb-nav a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb-nav a:hover {
  color: #fff;
}

.breadcrumb-separator {
  color: var(--gold-primary);
  font-size: 0.75rem;
}

.subpage-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--cream-primary);
  line-height: 1.2;
  margin-bottom: 0.8rem;
  background: linear-gradient(135deg, #ffffff 30%, var(--gold-light) 70%, var(--gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subpage-desc {
  font-size: 1.05rem;
  color: var(--cream-muted);
  line-height: 1.6;
}

/* Home Page Section Teaser Link */
.section-footer-cta {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-gold);
  color: var(--gold-light);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.btn-view-all:hover {
  background: var(--gold-gradient);
  color: #051613;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(223, 193, 139, 0.35);
}

/* ==========================================================================
   DTC PRODUCT SHOWCASE (SINGLE CUP & 6-CUP BUNDLE)
   ========================================================================== */
.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.8rem;
  max-width: 1180px;
  margin: 2.5rem auto 0;
}

@media (max-width: 960px) {
  .product-showcase-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
  }
}

.product-showcase-card {
  position: relative;
  background: linear-gradient(168deg, rgba(16, 52, 45, 0.75) 0%, rgba(6, 21, 18, 0.96) 100%);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(223, 193, 139, 0.22);
  border-top: 1.2px solid rgba(255, 248, 230, 0.45);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 
    0 24px 60px rgba(0, 0, 0, 0.75),
    0 0 35px rgba(23, 101, 88, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.45s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.product-showcase-card:hover {
  border-color: rgba(223, 193, 139, 0.45);
  box-shadow: 
    0 35px 80px rgba(0, 0, 0, 0.85),
    0 0 50px rgba(23, 101, 88, 0.35),
    inset 0 1px 1px rgba(255, 248, 230, 0.25);
}

.product-showcase-card.featured-card {
  border: 1.5px solid rgba(223, 193, 139, 0.55);
  border-top: 1.5px solid rgba(255, 248, 230, 0.8);
  box-shadow: 
    0 30px 75px rgba(0, 0, 0, 0.85),
    0 0 45px rgba(223, 193, 139, 0.28),
    inset 0 1px 1px rgba(255, 248, 230, 0.35);
}

.product-showcase-card.featured-card:hover {
  border-color: var(--gold-primary);
  box-shadow: 
    0 40px 95px rgba(0, 0, 0, 0.9),
    0 0 65px rgba(223, 193, 139, 0.45),
    inset 0 1px 2px rgba(255, 248, 230, 0.5);
}

/* 20K Dynamic Specular Sheen Tracker on Glass Card */
.card-sheen-surface {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(
    600px circle at var(--card-mouse-x, 50%) var(--card-mouse-y, 0%),
    rgba(255, 255, 255, 0.08) 0%,
    rgba(223, 193, 139, 0.04) 30%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 6;
}

.product-showcase-card:hover .card-sheen-surface {
  opacity: 1;
}

/* Card Header Status Bar */
.card-header-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.6rem 0.6rem;
  z-index: 4;
  position: relative;
}

.card-origin-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(4, 18, 15, 0.6);
  border: 1px solid rgba(223, 193, 139, 0.25);
  padding: 0.32rem 0.8rem;
  border-radius: 9999px;
  backdrop-filter: blur(10px);
}

.origin-gem {
  color: var(--gold-primary);
  font-size: 0.62rem;
  text-shadow: 0 0 8px rgba(223, 193, 139, 0.7);
}

.luxury-prestige-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff9e6;
  background: linear-gradient(135deg, rgba(223, 193, 139, 0.25) 0%, rgba(182, 146, 85, 0.35) 100%);
  border: 1px solid rgba(223, 193, 139, 0.6);
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  box-shadow: 0 4px 18px rgba(223, 193, 139, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  animation: subtleGlowPulse 3s ease-in-out infinite alternate;
}

@keyframes subtleGlowPulse {
  0% { box-shadow: 0 4px 18px rgba(223, 193, 139, 0.25); }
  100% { box-shadow: 0 4px 26px rgba(223, 193, 139, 0.55); }
}

.badge-sparkle {
  color: #fff;
  font-size: 0.78rem;
}

.luxury-edition-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.32rem 0.75rem;
  border-radius: 9999px;
}

/* Product Media Stage */
.product-media-wrap {
  position: relative;
  padding: 0.6rem 1.6rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.media-ambient-halo {
  position: absolute;
  width: 75%;
  height: 75%;
  background: radial-gradient(circle, rgba(34, 132, 116, 0.38) 0%, rgba(223, 193, 139, 0.12) 50%, transparent 80%);
  filter: blur(35px);
  pointer-events: none;
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0.75;
}

.product-showcase-card:hover .media-ambient-halo {
  transform: scale(1.18);
  opacity: 1;
}

.media-frame {
  position: relative;
  width: 100%;
  max-width: 330px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(223, 193, 139, 0.28);
  box-shadow: 
    0 20px 45px rgba(0, 0, 0, 0.75),
    0 0 25px rgba(23, 101, 88, 0.3);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  background: #000;
}

.product-showcase-card:hover .media-frame {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 28px 55px rgba(0, 0, 0, 0.85),
    0 0 35px rgba(223, 193, 139, 0.28);
  border-color: rgba(223, 193, 139, 0.5);
}

.product-main-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-showcase-card:hover .product-main-img {
  transform: scale(1.04);
}

.product-tag-float {
  position: absolute;
  bottom: 16px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.95),
    0 4px 14px rgba(0, 0, 0, 0.85);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 10px #2ecc71;
  display: inline-block;
  animation: liveDotPulse 2s infinite ease-in-out;
}

@keyframes liveDotPulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

/* Product Details Body */
.product-details {
  padding: 1.2rem 2rem 2.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  z-index: 3;
}

.product-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}

.rating-stars-group {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.stars-gold {
  color: #ffd700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.rating-score {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
}

.rating-count {
  font-size: 0.78rem;
  color: var(--cream-dim);
}

.provenance-badge {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-primary);
  background: rgba(223, 193, 139, 0.1);
  border: 1px solid rgba(223, 193, 139, 0.25);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.product-title {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--cream-primary);
  margin: 0 0 0.25rem 0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.product-showcase-card:hover .product-title {
  color: #ffffff;
}

.product-pack-text {
  font-size: 0.84rem;
  color: var(--gold-primary);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.product-desc {
  font-size: 0.9rem;
  color: rgba(220, 212, 199, 0.85);
  line-height: 1.6;
  margin-bottom: 1.15rem;
  font-weight: 400;
}

/* Haute Tasting Notes Strip */
.tasting-notes-strip {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.taste-pill {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--gold-light);
  background: rgba(223, 193, 139, 0.08);
  border: 1px solid rgba(223, 193, 139, 0.22);
  padding: 0.24rem 0.7rem;
  border-radius: 9999px;
  backdrop-filter: blur(8px);
}

/* Feature Specs List */
.product-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.product-features-list li {
  font-size: 0.86rem;
  color: rgba(220, 212, 199, 0.9);
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  line-height: 1.45;
}

.luxury-diamond {
  color: var(--gold-primary);
  font-size: 0.68rem;
  line-height: 1.6;
  flex-shrink: 0;
  text-shadow: 0 0 8px rgba(223, 193, 139, 0.6);
}

/* Price Section */
.product-price-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(223, 193, 139, 0.16);
  border-bottom: 1px solid rgba(223, 193, 139, 0.16);
  margin-bottom: 1.5rem;
}

.price-block {
  display: flex;
  flex-direction: column;
}

.price-main-row {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.price-currency {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
}

.price-current {
  font-family: var(--font-serif);
  font-size: 2.15rem;
  font-weight: 800;
  color: #fff9e6;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 16px rgba(223, 193, 139, 0.4);
  line-height: 1;
}

.price-original {
  font-size: 1.05rem;
  color: rgba(154, 168, 163, 0.7);
  text-decoration: line-through;
  margin-left: 0.4rem;
}

.price-subnote {
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--gold-light);
  opacity: 0.85;
  margin-top: 0.3rem;
  letter-spacing: 0.02em;
}

/* Quantity Picker - Obsidian Dial */
.quantity-picker {
  display: inline-flex;
  align-items: center;
  background: rgba(3, 15, 12, 0.92);
  border: 1px solid rgba(223, 193, 139, 0.35);
  border-radius: 9999px;
  padding: 0.25rem 0.55rem;
  box-shadow: 
    0 6px 18px rgba(0, 0, 0, 0.5),
    inset 0 2px 6px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
}

.btn-qty {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-light);
  background: rgba(223, 193, 139, 0.1);
  border: 1px solid rgba(223, 193, 139, 0.25);
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-qty:hover {
  background: rgba(223, 193, 139, 0.28);
  border-color: var(--gold-primary);
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 0 14px rgba(223, 193, 139, 0.5);
}

.qty-display {
  padding: 0 0.85rem;
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

/* Action Buttons */
.product-action-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.85rem;
  margin-top: auto;
  align-items: stretch;
}

.btn-add-cart {
  position: relative;
  width: 100%;
  min-height: 50px;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #faefcf 0%, #dfc18b 50%, #b89150 100%);
  color: #051613;
  border: none;
  border-radius: 14px;
  box-shadow: 
    0 8px 24px rgba(223, 193, 139, 0.32),
    inset 0 1px 1px rgba(255, 255, 255, 0.6);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.btn-add-cart:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 12px 30px rgba(223, 193, 139, 0.48),
    inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

.btn-buy-now {
  position: relative;
  width: 100%;
  min-height: 50px;
  justify-content: center;
  padding: 0.85rem 1.15rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(223, 193, 139, 0.08);
  color: var(--gold-light);
  border: 1px solid rgba(223, 193, 139, 0.35);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.btn-buy-now:hover {
  background: rgba(223, 193, 139, 0.22);
  border-color: var(--gold-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(223, 193, 139, 0.3);
}

/* ==========================================================================
   20K LUXURY SIGNATURE GUARANTEES & COMMITMENTS BAR
   ========================================================================== */
.trust-badges-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 2.4rem 2.8rem;
  margin: 4.5rem auto 1.5rem;
  max-width: 1180px;
  background: linear-gradient(165deg, rgba(14, 48, 42, 0.78) 0%, rgba(5, 20, 17, 0.95) 100%);
  border: 1px solid rgba(223, 193, 139, 0.22);
  border-top: 1.2px solid rgba(255, 248, 230, 0.5);
  border-radius: 24px;
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  box-shadow: 
    0 24px 60px rgba(0, 0, 0, 0.75),
    0 0 35px rgba(23, 101, 88, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  position: relative;
}

@media (max-width: 1024px) {
  .trust-badges-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem;
  }
}

@media (max-width: 600px) {
  .trust-badges-bar {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    padding: 1.6rem;
  }
}

.trust-badge-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-badge-item:hover {
  transform: translateY(-3px);
}

@media (min-width: 1025px) {
  .trust-badge-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 10%;
    height: 80%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(223, 193, 139, 0.22) 50%, transparent);
  }
}

.trust-badge-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(223, 193, 139, 0.14) 0%, rgba(14, 61, 54, 0.55) 100%);
  border: 1px solid rgba(223, 193, 139, 0.35);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.3);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-badge-item:hover .trust-badge-icon {
  transform: scale(1.1) rotate(3deg);
  background: linear-gradient(135deg, rgba(223, 193, 139, 0.3) 0%, rgba(22, 101, 88, 0.7) 100%);
  border-color: var(--gold-primary);
  color: #ffffff;
  box-shadow: 0 0 25px rgba(223, 193, 139, 0.55), inset 0 1px 2px rgba(255, 255, 255, 0.6);
}

.trust-badge-content {
  display: flex;
  flex-direction: column;
}

.badge-index-tag {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.trust-badge-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
  margin-bottom: 0.2rem;
  transition: color 0.3s ease;
}

.trust-badge-item:hover .trust-badge-title {
  color: var(--gold-light);
}

.trust-badge-sub {
  font-size: 0.78rem;
  color: rgba(220, 212, 199, 0.8);
  line-height: 1.45;
  font-weight: 400;
}

/* Customer Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 2.5rem;
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.review-stars {
  color: #ffb800;
  font-size: 1rem;
  letter-spacing: 2px;
}

.review-date {
  font-size: 0.78rem;
  color: var(--cream-dim);
}

.review-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--cream-primary);
  margin-bottom: 0.55rem;
}

.review-comment {
  font-size: 0.88rem;
  color: var(--cream-muted);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  flex: 1;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(223, 193, 139, 0.15);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--cream-primary);
}

.verified-pill {
  font-size: 0.68rem;
  color: #2ecc71;
  background: rgba(46, 204, 113, 0.1);
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-pill);
}

.review-item-tag {
  font-size: 0.72rem;
  color: var(--gold-light);
}


