/* =============================================
   KC DAS — Premium Bengali Sweets
   Design System & Styles
   ============================================= */

:root {
  --red-deep: #6B1A1A;
  --red-maroon: #8B2020;
  --cream: #F5EDE0;
  --cream-warm: #EDE4D3;
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --gold-dark: #9A7B2E;
  --beige: #D4C4A8;
  --brown-dark: #2C1810;
  --brown-choco: #3D2314;
  --off-white: #FAF7F2;
  --green-accent: #2D5A3D;
  --green-muted: #4A7C59;
  --taxi-yellow: #F5C518;
  --taxi-yellow-soft: #FFE08A;
  --taxi-black: #2A2118;
  --text-dark: #1A1210;
  --text-muted: #6B5E54;
  --glass: rgba(245, 237, 224, 0.08);
  --glass-border: rgba(201, 168, 76, 0.2);
  --shadow-soft: 0 8px 32px rgba(44, 24, 16, 0.12);
  --shadow-deep: 0 20px 60px rgba(44, 24, 16, 0.25);
  --shadow-gold: 0 8px 30px rgba(201, 168, 76, 0.3);
  --font-serif: 'Cormorant Garamond', 'Noto Serif Bengali', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', 'Noto Sans Bengali', system-ui, sans-serif;
  --font-bengali: 'Noto Serif Bengali', 'Noto Sans Bengali', serif;
  --nav-height: 80px;
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-cinematic: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  /* `clip` keeps horizontal overflow hidden without breaking position: sticky */
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--off-white);
  overflow-x: hidden;
  overflow-x: clip;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.loading { overflow: hidden; }
body.loaded .loader { opacity: 0; visibility: hidden; pointer-events: none; }

img { max-width: 100%; height: auto; display: block; }
video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; transition: color 0.3s var(--transition-smooth); }
button { cursor: pointer; border: none; background: none; }

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .cursor-glow { display: none !important; }
}

/* =============================================
   LOADER
   ============================================= */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #0A0604;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 1s var(--transition-cinematic), visibility 1s;
}

.loader-texture {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.loader-logo {
  opacity: 0;
  transform: scale(0.8);
  margin-bottom: 2rem;
}

.loader-bar {
  width: 120px;
  height: 2px;
  background: rgba(201, 168, 76, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 2px;
}

/* =============================================
   CURSOR & SCROLL PROGRESS
   ============================================= */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

body.cursor-active .cursor-glow { opacity: 1; }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 9999;
  background: rgba(201, 168, 76, 0.1);
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  transform-origin: left;
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  padding: 1rem 0;
  background: transparent !important;
  box-shadow: none !important;
  transition: background 0.5s var(--transition-smooth), backdrop-filter 0.5s, box-shadow 0.5s, padding 0.4s, transform 0.4s;
  z-index: 1000;
}

.navbar.at-hero {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}

.navbar.at-hero .navbar-brand {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.navbar.at-hero .nav-logo {
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.85));
}

.navbar.at-hero .nav-link {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.navbar.scrolled {
  background: rgba(44, 24, 16, 0.94) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25) !important;
  padding: 0.6rem 0;
}

.navbar.scrolled .navbar-brand {
  opacity: 1;
  visibility: visible;
}

.nav-logo {
  transition: transform 0.3s var(--transition-smooth);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.navbar-brand:hover .nav-logo { transform: scale(1.05); }

.navbar-nav .nav-link {
  color: var(--cream);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem !important;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--transition-smooth), left 0.3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus-visible::after {
  width: 60%;
  left: 20%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
  color: var(--brown-dark) !important;
  border-radius: 50px;
  padding: 0.5rem 1.5rem !important;
  font-weight: 600 !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

/* Hamburger */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus { box-shadow: none; }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) { opacity: 0; }

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(44, 24, 16, 0.97);
    backdrop-filter: blur(20px);
    margin-top: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
  }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--brown-dark);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  transition: transform 0.3s var(--transition-smooth), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-primary-custom:hover {
  color: var(--brown-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--cream);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1px solid rgba(245, 237, 224, 0.4);
  transition: all 0.3s var(--transition-smooth);
}

.btn-outline-custom:hover {
  color: var(--gold-light);
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

/* =============================================
   SECTION COMMON
   ============================================= */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--brown-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
}

.section-header { padding: 0 1rem; margin-bottom: 2rem; }

/* =============================================
   HERO
   ============================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-fallback-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  z-index: 0;
  animation: heroKenBurns 18s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  z-index: 1;
  transition: opacity 0.6s ease;
}

.hero-video-wrap.video-playing .hero-video {
  opacity: 1;
}

.hero-youtube {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-video-wrap.no-video .hero-video { display: none; }
.hero-video-wrap.no-video .hero-fallback-img { z-index: 1; }
.hero-video-wrap.no-video .hero-youtube {
  display: block;
}

.hero-video-wrap.video-playing .hero-youtube {
  opacity: 1;
}

.hero-video-wrap.video-buffering .hero-fallback-img {
  opacity: 1;
}

.hero-youtube #heroYoutube,
.hero-youtube iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 110%;
  min-width: 177.78vh;
  transform: translate(-50%, -50%) scale(1.18);
  border: 0;
  pointer-events: none;
}

/* Covers YouTube center play/pause while loading */
.hero-youtube-shield {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: rgba(8, 4, 2, 0.25);
  transition: opacity 0.5s ease;
}

.hero-video-wrap.video-playing .hero-youtube-shield {
  opacity: 0;
}

.hero-youtube::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(8, 4, 2, 0.55) 0%, rgba(8, 4, 2, 0.35) 35%, rgba(8, 4, 2, 0.55) 100%);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 55% at 50% 42%, rgba(8, 4, 2, 0.72) 0%, rgba(8, 4, 2, 0.25) 55%, transparent 80%);
}

/* Hides YouTube play/pause circle until video is playing */
.hero-ui-blocker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(8, 4, 2, 0.88);
  z-index: 3;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.hero-video-wrap.video-playing .hero-ui-blocker {
  opacity: 0;
}

/* Hide YouTube corner watermark area */
.hero-video-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 140px;
  height: 56px;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(135deg, transparent 30%, rgba(8, 4, 2, 0.7) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold-light);
  border-radius: 50%;
  opacity: 0.4;
  animation: floatParticle 8s infinite ease-in-out;
}

.hero-particles::before { top: 30%; left: 20%; animation-delay: 0s; }
.hero-particles::after { top: 60%; right: 25%; animation-delay: 3s; }

@keyframes floatParticle {
  0%, 100% { transform: translate(0, 0); opacity: 0.2; }
  50% { transform: translate(30px, -40px); opacity: 0.6; }
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 2rem 1.5rem 6rem;
  max-width: 900px;
}

.hero-logo-wrap {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero-logo {
  margin: 0 auto;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.6));
}

.hero-title-line {
  display: inline-block;
  clip-path: inset(0 100% 0 0);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1rem;
  overflow: hidden;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.9), 0 4px 40px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: rgba(245, 237, 224, 0.95);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.75rem;
  opacity: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.hero-bengali {
  font-family: var(--font-bengali);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 2.5rem;
  opacity: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  opacity: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245, 237, 224, 0.75);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  animation: scrollBounce 2s infinite ease-in-out 3s;
}

.scroll-indicator i { font-size: 1.2rem; }

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

/* =============================================
   JOURNEY SECTION — Sticky Arch Showcase
   ============================================= */
.journey-section {
  position: relative;
  padding: 5rem 0 6rem;
  background:
    radial-gradient(ellipse 80% 60% at 15% 0%, #3B2216 0%, transparent 60%),
    var(--brown-dark);
  color: var(--cream);
}

.journey-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23C9A84C' stroke-width='0.6'%3E%3Ccircle cx='40' cy='40' r='18'/%3E%3Ccircle cx='0' cy='0' r='18'/%3E%3Ccircle cx='80' cy='0' r='18'/%3E%3Ccircle cx='0' cy='80' r='18'/%3E%3Ccircle cx='80' cy='80' r='18'/%3E%3C/g%3E%3C/svg%3E");
}

.journey-section .container { position: relative; z-index: 1; }
.journey-section .section-tag { color: var(--gold-light); }
.journey-section .section-title { color: var(--cream); }
.journey-section .section-subtitle { color: rgba(245, 237, 224, 0.7); margin-bottom: 2rem; }

.journey-experience {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1180px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .journey-experience {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    gap: 4.5rem;
    align-items: start;
  }
}

/* --- Sticky arch (desktop) --- */
.journey-showcase { display: none; }

@media (min-width: 992px) {
  .journey-showcase {
    display: block;
    position: sticky;
    top: calc(var(--nav-height) + 2rem);
  }
}

.journey-arch {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 68vh;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 46% 46% 16px 16px / 34% 34% 16px 16px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.5);
}

.journey-arch-frame {
  position: absolute;
  inset: 10px;
  z-index: 3;
  pointer-events: none;
  border: 1px solid rgba(201, 168, 76, 0.55);
  border-radius: 46% 46% 10px 10px / 34% 34% 10px 10px;
}

.journey-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.12);
  transition: opacity 0.9s var(--transition-cinematic), transform 1.6s var(--transition-cinematic);
}

.journey-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.journey-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 16, 10, 0.1) 0%, rgba(20, 10, 6, 0.35) 55%, rgba(16, 8, 4, 0.85) 100%);
}

.journey-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.75rem;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  text-align: center;
}

.journey-caption-num {
  font-family: var(--font-serif);
  font-size: 3.25rem;
  font-weight: 600;
  line-height: 1;
  color: var(--gold-light);
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.65);
}

.journey-caption-bn {
  font-family: var(--font-bengali);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: rgba(245, 237, 224, 0.9);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

/* --- Chapters --- */
.journey-chapters {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.journey-chapter {
  position: relative;
  padding-bottom: 2.5rem;
}

.journey-chapter:last-child { padding-bottom: 0; }

.journey-chapter-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 1.1rem;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 44% 44% 14px 14px / 28% 28% 14px 14px;
}

.journey-chapter-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey-chapter-num {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.journey-chapter h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--cream);
  margin: 0 0 0.3rem;
}

.journey-chapter-bn {
  display: block;
  font-family: var(--font-bengali);
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-bottom: 0.85rem;
}

.journey-chapter p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(245, 237, 224, 0.72);
  margin: 0;
  max-width: 44ch;
}

@media (min-width: 992px) {
  .journey-chapters::before {
    content: '';
    position: absolute;
    left: 13px;
    top: 4rem;
    bottom: 4rem;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(201, 168, 76, 0.45) 10%, rgba(201, 168, 76, 0.45) 90%, transparent);
  }

  .journey-chapter {
    display: flex;
    align-items: center;
    min-height: 58vh;
    padding: 0 0 0 3.5rem;
  }

  .journey-chapter::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 50%;
    width: 13px;
    height: 13px;
    margin-top: -6.5px;
    border-radius: 50%;
    background: var(--brown-dark);
    border: 2px solid rgba(201, 168, 76, 0.5);
    transition: background 0.45s var(--transition-smooth), border-color 0.45s, box-shadow 0.45s;
  }

  .journey-chapter.is-active::before {
    background: var(--gold);
    border-color: var(--gold-light);
    box-shadow: 0 0 0 7px rgba(201, 168, 76, 0.14);
  }

  .journey-chapter-media { display: none; }

  .journey-chapter-text {
    transition: opacity 0.55s var(--transition-smooth), transform 0.55s var(--transition-smooth);
  }

  .journey-chapter:not(.is-active) .journey-chapter-text {
    opacity: 0.35;
    transform: translateY(8px);
  }
}

/* =============================================
   UNBOX SECTION — Spotlight Showcase
   ============================================= */
.unbox-section {
  position: relative;
  padding: 6rem 0 6.5rem;
  overflow: hidden;
  color: #F4E9D8;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, #3E2517 0%, transparent 70%),
    linear-gradient(180deg, #1F130C 0%, #170E08 100%);
}

.unbox-spotlight {
  position: absolute;
  top: -12%;
  left: 50%;
  width: min(900px, 120vw);
  height: 600px;
  transform: translateX(-50%);
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.22) 0%, transparent 65%);
  filter: blur(20px);
}

.unbox-section .container { position: relative; z-index: 1; }
.unbox-section .section-title { color: #FBF3E2; }
.unbox-section .section-tag { color: var(--gold-light); }
.unbox-section .section-subtitle { color: rgba(244, 233, 216, 0.68); }

.unbox-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .unbox-showcase {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
  }
}

/* --- rotating plate --- */
.unbox-stage { text-align: center; }

.unbox-plate {
  position: relative;
  width: min(400px, 78vw);
  aspect-ratio: 1;
  margin: 0 auto 1.75rem;
  display: grid;
  place-items: center;
}

.unbox-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(201, 168, 76, 0.9) 55deg, transparent 130deg, rgba(201, 168, 76, 0.45) 225deg, transparent 300deg);
  -webkit-mask: radial-gradient(circle, transparent 61%, #000 62%);
  mask: radial-gradient(circle, transparent 61%, #000 62%);
  animation: unboxSpin 16s linear infinite;
}

.unbox-ring-2 {
  inset: 7%;
  background: conic-gradient(from 180deg, transparent 0deg, rgba(255, 224, 138, 0.65) 70deg, transparent 160deg);
  -webkit-mask: radial-gradient(circle, transparent 67%, #000 68%);
  mask: radial-gradient(circle, transparent 67%, #000 68%);
  animation-duration: 26s;
  animation-direction: reverse;
}

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

.unbox-plate-img {
  position: relative;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(201, 168, 76, 0.5);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.6),
    0 0 0 16px rgba(201, 168, 76, 0.05);
  animation: unboxFloat 6.5s ease-in-out infinite;
}

.unbox-plate-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.28s ease, transform 0.7s var(--transition-cinematic);
}

.unbox-plate-img.is-swapping img {
  opacity: 0;
  transform: scale(1.08);
}

@keyframes unboxFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* --- active sweet copy --- */
.unbox-count {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: rgba(244, 233, 216, 0.45);
}

.unbox-count b {
  color: var(--gold-light);
  font-weight: 700;
}

.unbox-name {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #FBF3E2;
  margin: 0.5rem 0 0.15rem;
}

.unbox-bn {
  display: block;
  font-family: var(--font-bengali);
  font-size: 1.05rem;
  color: var(--gold-light);
}

.unbox-desc {
  max-width: 44ch;
  margin: 1rem auto 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(244, 233, 216, 0.7);
}

/* --- selector list --- */
.unbox-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.unbox-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 1rem;
  border-radius: 16px;
  text-align: left;
  cursor: pointer;
  color: inherit;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.16);
  transition: background 0.35s, border-color 0.35s, transform 0.35s var(--transition-smooth);
}

.unbox-item:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateX(5px);
}

.unbox-item:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.unbox-item.is-active {
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.03));
  border-color: rgba(201, 168, 76, 0.55);
}

.unbox-thumb {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(201, 168, 76, 0.35);
  transition: border-color 0.35s;
}

.unbox-item.is-active .unbox-thumb { border-color: var(--gold-light); }

.unbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.unbox-item-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.unbox-item-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #F4E9D8;
  transition: color 0.3s;
}

.unbox-item.is-active .unbox-item-name { color: var(--gold-light); }

.unbox-item-bn {
  font-family: var(--font-bengali);
  font-size: 0.8rem;
  color: rgba(244, 233, 216, 0.5);
}

.unbox-item-arrow {
  margin-left: auto;
  color: var(--gold-light);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.35s, transform 0.35s;
}

.unbox-item:hover .unbox-item-arrow,
.unbox-item.is-active .unbox-item-arrow {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .unbox-ring,
  .unbox-plate-img {
    animation: none;
  }
}

/* =============================================
   KC SWEETS SHOWCASE — Heritage Catalog
   ============================================= */
.kc-sweets-showcase {
  --kc-maroon: #7B1E12;
  --kc-cream: #FBF3E6;
  --kc-gold: #C9A84C;
  --kc-gold-light: #E8C56A;
  position: relative;
  padding: 5rem 0 5.5rem;
  overflow: hidden;
  color: var(--kc-maroon);
  background-color: var(--kc-cream);
  background-image:
    linear-gradient(rgba(251, 243, 230, 0.94), rgba(251, 243, 230, 0.94)),
    url('../images/heritage.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

.kc-sweets-showcase .container {
  position: relative;
  z-index: 2;
}

/* Kolkata heritage line art */
.kc-sweets-showcase__heritage {
  position: absolute;
  z-index: 1;
  color: rgba(123, 30, 18, 0.08);
  pointer-events: none;
  user-select: none;
}

.kc-sweets-showcase__heritage svg {
  width: 100%;
  height: auto;
}

.kc-sweets-showcase__heritage--bridge {
  left: 1%;
  top: 8%;
  width: min(110px, 14vw);
}

.kc-sweets-showcase__heritage--memorial {
  right: 1%;
  top: 8%;
  width: min(110px, 14vw);
}

@media (max-width: 767.98px) {
  .kc-sweets-showcase__heritage { opacity: 0.45; }
}

/* Header */
.kc-sweets-showcase__header {
  max-width: 820px;
  margin: 0 auto 3rem;
}

.kc-sweets-showcase__tagline {
  font-family: var(--font-bengali);
  font-size: clamp(0.9rem, 2.2vw, 1.05rem);
  color: rgba(123, 30, 18, 0.75);
  margin: 0 0 0.75rem;
  letter-spacing: 0.02em;
}

.kc-sweets-showcase__ornament {
  color: var(--kc-gold);
  margin: 0 0.35rem;
  font-size: 0.75rem;
}

.kc-sweets-showcase__title {
  font-family: var(--font-bengali);
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 700;
  color: var(--kc-maroon);
  margin: 0 0 1rem;
  line-height: 1.35;
}

.kc-sweets-showcase__intro {
  font-family: var(--font-bengali);
  font-size: clamp(0.92rem, 2vw, 1.05rem);
  line-height: 1.85;
  color: rgba(123, 30, 18, 0.82);
  margin: 0 auto;
  max-width: 680px;
}

.kc-sweets-showcase__divider,
.kc-sweet-card__rule {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.kc-sweets-showcase__divider {
  margin-top: 1.5rem;
}

.kc-sweets-showcase__divider i,
.kc-sweet-card__rule i {
  display: block;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--kc-gold));
}

.kc-sweets-showcase__divider i:last-child,
.kc-sweet-card__rule i:last-child {
  background: linear-gradient(90deg, var(--kc-gold), transparent);
}

.kc-sweets-showcase__divider b,
.kc-sweet-card__rule b {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--kc-gold);
  line-height: 1;
}

/* Cards */
.kc-sweet-card {
  text-align: center;
  padding: 0.25rem 0.15rem 0.5rem;
  opacity: 0;
  transition: transform 0.35s var(--transition-smooth);
}

.kc-sweet-card.is-visible {
  animation: kcSweetIn 0.65s ease forwards;
}

@keyframes kcSweetIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.kc-sweet-card:hover {
  transform: translateY(-4px);
}

.kc-sweet-card__media {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(123, 30, 18, 0.12);
  transition: box-shadow 0.35s ease;
}

.kc-sweet-card:hover .kc-sweet-card__media {
  box-shadow: 0 14px 32px rgba(123, 30, 18, 0.2);
}

.kc-sweet-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.45s var(--transition-cinematic);
}

.kc-sweet-card:hover .kc-sweet-card__media img {
  transform: scale(1.04);
}

.kc-sweet-card__name {
  font-family: var(--font-bengali);
  font-size: clamp(0.95rem, 2vw, 1.12rem);
  font-weight: 700;
  color: var(--kc-maroon);
  margin: 0.85rem 0 0.25rem;
  line-height: 1.35;
}

.kc-sweet-card__desc {
  font-family: var(--font-bengali);
  font-size: clamp(0.72rem, 1.6vw, 0.82rem);
  line-height: 1.55;
  color: rgba(123, 30, 18, 0.72);
  margin: 0 0 0.55rem;
  min-height: 2.4em;
}

.kc-sweet-card__rule {
  margin-top: 0.15rem;
}

.kc-sweet-card__rule i {
  width: 18px;
}

@media (prefers-reduced-motion: reduce) {
  .kc-sweet-card.is-visible { animation: none; opacity: 1; transform: none; }
  .kc-sweet-card:hover { transform: none; }
  .kc-sweet-card:hover .kc-sweet-card__media img { transform: none; }
}

/* Legacy hook — keep id anchor styling neutral */
.sweets-section { /* inherits kc-sweets-showcase */ }

/* =============================================
   KC SWEETS BOX SECTION — Premium Packaging
   ============================================= */
.kc-sweets-box-section {
  --kc-box-brown: #160C08;
  --kc-box-chocolate: #24130D;
  --kc-box-red: #6E2418;
  --kc-box-red-btn: #8C351D;
  --kc-box-gold: #C99A45;
  --kc-box-gold-light: #E4C27A;
  --kc-box-cream: #F8EEDC;
  --kc-box-white: #FFF9EF;
  position: relative;
  min-height: 850px;
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
  color: var(--kc-box-cream);
  background:
    radial-gradient(circle at 70% 35%, rgba(138, 88, 30, 0.28), transparent 40%),
    linear-gradient(135deg, #160c08 0%, #24130d 50%, #120906 100%);
}

.kc-sweets-box-section .container {
  position: relative;
  z-index: 2;
}

/* Kolkata heritage background */
.kc-kolkata-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.kc-kolkata-bg__bridge {
  position: absolute;
  left: 0;
  top: 0;
  width: 62%;
  height: 100%;
  opacity: 0.09;
  filter: sepia(1) saturate(0.45) brightness(0.85);
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.35) 72%, transparent 100%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.35) 72%, transparent 100%);
}

.kc-kolkata-bg__bridge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.kc-kolkata-bg__memorial {
  position: absolute;
  right: 0;
  top: 0;
  width: min(48%, 560px);
  height: min(62%, 520px);
  opacity: 0.07;
  filter: grayscale(1) sepia(0.35) brightness(0.9);
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(225deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.25) 55%, transparent 100%);
  mask-image: linear-gradient(225deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.25) 55%, transparent 100%);
}

.kc-kolkata-bg__memorial img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.kc-kolkata-bg__glow {
  position: absolute;
  right: 15%;
  top: 20%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 154, 69, 0.15) 0%, transparent 68%);
}

/* Left content */
.kc-sweets-content {
  text-align: center;
}

@media (min-width: 992px) {
  .kc-sweets-content { text-align: left; }
}

.kc-sweets-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-bengali);
  font-size: clamp(0.78rem, 1.8vw, 0.92rem);
  letter-spacing: 0.14em;
  color: var(--kc-box-gold-light);
  margin: 0 0 1.25rem;
}

.kc-sweets-tagline__line {
  display: block;
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--kc-box-gold));
}

.kc-sweets-tagline__line:last-child {
  background: linear-gradient(90deg, var(--kc-box-gold), transparent);
}

.kc-sweets-title {
  font-family: var(--font-bengali);
  font-size: clamp(2.35rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--kc-box-white);
  margin: 0 0 1.25rem;
  opacity: 0;
  transform: translateY(24px);
}

.kc-sweets-title.is-visible {
  animation: kcBoxFadeUp 0.8s ease forwards;
}

.kc-sweets-title__gold {
  color: var(--kc-box-gold-light);
}

.kc-sweets-description {
  font-family: var(--font-bengali);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.8;
  color: rgba(248, 238, 220, 0.82);
  max-width: 600px;
  margin: 0 auto 2rem;
}

@media (min-width: 992px) {
  .kc-sweets-description { margin-left: 0; margin-right: 0; }
}

/* Features */
.kc-sweets-features {
  list-style: none;
  margin: 0 0 2.25rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.25rem;
}

.kc-sweets-feature {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.kc-sweets-feature__icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(201, 154, 69, 0.45);
  color: var(--kc-box-gold-light);
  font-size: 1.15rem;
  background: rgba(201, 154, 69, 0.06);
}

.kc-sweets-feature__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-align: left;
}

.kc-sweets-feature__text strong {
  font-family: var(--font-bengali);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--kc-box-cream);
}

.kc-sweets-feature__text small {
  font-family: var(--font-bengali);
  font-size: 0.78rem;
  color: rgba(248, 238, 220, 0.55);
}

/* Popular mini cards */
.kc-sweets-popular__title {
  font-family: var(--font-bengali);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--kc-box-gold-light);
  margin: 0 0 1rem;
}

.kc-sweets-card {
  text-align: center;
  padding: 0.85rem 0.5rem;
  border-radius: 12px;
  border: 1px solid rgba(201, 154, 69, 0.28);
  background: rgba(22, 12, 8, 0.55);
  backdrop-filter: blur(4px);
  transition: border-color 0.35s, transform 0.35s var(--transition-smooth);
}

.kc-sweets-card:hover {
  border-color: var(--kc-box-gold);
  transform: translateY(-3px);
}

.kc-sweets-card img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201, 154, 69, 0.35);
  margin-bottom: 0.45rem;
}

.kc-sweets-card h4 {
  font-family: var(--font-bengali);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--kc-box-cream);
  margin: 0 0 0.15rem;
}

.kc-sweets-card p {
  font-family: var(--font-bengali);
  font-size: 0.68rem;
  line-height: 1.45;
  color: rgba(248, 238, 220, 0.6);
  margin: 0;
}

/* Right — product stage */
.kc-sweets-products {
  position: relative;
}

.kc-sweets-stage {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.kc-sweets-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212, 170, 78, 0.35);
  pointer-events: none;
}

.kc-sweets-ring--outer {
  width: min(520px, 88vw);
  height: min(520px, 88vw);
}

.kc-sweets-ring--inner {
  width: min(420px, 72vw);
  height: min(420px, 72vw);
  border-color: rgba(212, 170, 78, 0.2);
}

.kc-sweets-stage__glow {
  position: absolute;
  width: min(380px, 70vw);
  height: min(380px, 70vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 154, 69, 0.22) 0%, transparent 70%);
}

.kc-sweets-main-product {
  position: relative;
  z-index: 3;
  margin: 0;
  opacity: 0;
  transform: scale(0.92);
}

.kc-sweets-main-product.is-visible {
  animation: kcBoxScaleIn 1s ease 0.15s forwards;
}

.kc-sweets-product-box {
  width: min(420px, 78vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 35px 45px rgba(0, 0, 0, 0.55));
  transition: transform 0.5s ease;
}

.kc-sweets-main-product:hover .kc-sweets-product-box {
  transform: translateY(-12px) scale(1.02);
}

.kc-sweets-floating-product {
  position: absolute;
  margin: 0;
  z-index: 4;
  opacity: 0;
}

.kc-sweets-floating-product.is-visible {
  animation: kcBoxFadeIn 0.8s ease forwards;
}

.kc-sweets-floating-product img {
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.45));
  transition: transform 0.45s ease;
}

.kc-sweets-floating-product:hover img {
  transform: translateY(-6px);
}

.kc-sweets-floating-product--can {
  top: 2%;
  right: 2%;
}

.kc-sweets-floating-product--can.is-visible { animation-delay: 0.35s; }

.kc-sweets-floating-product--can img {
  width: min(150px, 28vw);
}

.kc-sweets-floating-product--stack {
  bottom: 8%;
  left: 0;
}

.kc-sweets-floating-product--stack.is-visible { animation-delay: 0.5s; }

.kc-sweets-floating-product--stack img {
  width: min(130px, 26vw);
}

.kc-sweets-floating-product--doi {
  bottom: 12%;
  right: 8%;
}

.kc-sweets-floating-product--doi.is-visible { animation-delay: 0.65s; }

.kc-sweets-floating-product--doi img {
  width: min(90px, 18vw);
  border-radius: 50%;
  border: 2px solid rgba(201, 154, 69, 0.4);
}

/* CTA */
.kc-sweets-cta-wrap {
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .kc-sweets-cta-wrap {
    margin-left: auto;
    margin-right: 0;
    text-align: center;
  }
}

.kc-sweets-quote {
  font-family: var(--font-bengali);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--kc-box-gold-light);
  margin: 0 0 1.25rem;
}

.kc-sweets-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 14px 32px;
  border-radius: 8px;
  background: var(--kc-box-red-btn);
  border: 1px solid var(--kc-box-gold);
  color: #fff;
  font-family: var(--font-bengali);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.35s, color 0.35s, transform 0.35s var(--transition-smooth);
}

.kc-sweets-cta:hover {
  background: var(--kc-box-gold);
  color: var(--kc-box-brown);
  transform: translateY(-2px);
}

.kc-sweets-delivery {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 1rem 0 0;
  font-family: var(--font-bengali);
  font-size: 0.82rem;
  color: rgba(248, 238, 220, 0.65);
}

.kc-sweets-delivery i { color: var(--kc-box-gold); }

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

@keyframes kcBoxScaleIn {
  to { opacity: 1; transform: scale(1); }
}

@keyframes kcBoxFadeIn {
  to { opacity: 1; }
}

@media (max-width: 991.98px) {
  .kc-sweets-box-section { min-height: auto; padding: 4rem 0; }
  .kc-kolkata-bg__bridge {
    width: 78%;
    opacity: 0.05;
  }
  .kc-kolkata-bg__memorial {
    width: min(55%, 320px);
    height: min(45%, 280px);
    opacity: 0.04;
  }
  .kc-sweets-stage { min-height: 340px; margin-top: 1rem; }
  .kc-sweets-floating-product--stack { left: -2%; bottom: 4%; }
  .kc-sweets-floating-product--can { right: -2%; top: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .kc-sweets-title,
  .kc-sweets-main-product,
  .kc-sweets-floating-product {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .kc-sweets-main-product:hover .kc-sweets-product-box,
  .kc-sweets-card:hover { transform: none; }
}

/* =============================================
   ROSSOGOLLA SIGNATURE SECTION
   ============================================= */
.rossogolla-section {
  --rosso-chocolate: #3A1E14;
  --rosso-brown: #4A281A;
  --rosso-burgundy: #6D1F1F;
  --rosso-maroon: #541717;
  --rosso-gold: #B88A3B;
  --rosso-gold-light: #D5B56A;
  --rosso-ivory: #F5EBDD;
  --rosso-cream: #EFE0C5;
  --rosso-text: #3B2117;
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background-color: var(--rosso-ivory);
  background-image: url('../assets/images/signature/signature-back.png');
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
}

.rossogolla-section__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(0, 38%) minmax(0, 62%);
  align-items: center;
}

.rossogolla-section__content {
  grid-column: 2;
  justify-self: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem clamp(1.25rem, 3vw, 2.5rem);
  text-align: center;
  position: relative;
  z-index: 2;
}

.rossogolla-section__badge {
  display: inline-block;
  margin-bottom: 1.25rem;
  padding: 0.45rem 1.15rem;
  border: 1px solid var(--rosso-gold);
  border-radius: 3px;
  background: var(--rosso-burgundy);
  color: var(--rosso-cream);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.rossogolla-section__title {
  margin: 0 0 0.85rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.5rem, 7.5vw, 5.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--rosso-text);
}

.rossogolla-section__divider {
  display: block;
  position: relative;
  width: min(220px, 70%);
  height: 10px;
  margin: 0 auto 1rem;
}

.rossogolla-section__divider::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent 0%, var(--rosso-gold) 18%, var(--rosso-gold) 42%, transparent 42%, transparent 58%, var(--rosso-gold) 58%, var(--rosso-gold) 82%, transparent 100%);
}

.rossogolla-section__divider::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 1px solid var(--rosso-gold);
  background: var(--rosso-ivory);
}

.rossogolla-section__tagline {
  margin: 0 0 1.25rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--rosso-gold);
}

.rossogolla-section__description {
  max-width: 540px;
  margin: 0 auto 2rem;
  font-family: 'Noto Sans', system-ui, sans-serif;
  font-size: clamp(0.95rem, 1.7vw, 1.1rem);
  line-height: 1.65;
  color: var(--rosso-text);
}

.rossogolla-section__features {
  list-style: none;
  margin: 0 auto 2rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  max-width: 560px;
}

.rossogolla-section__feature {
  flex: 1 1 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 0 0.65rem;
  border-right: 1px solid rgba(184, 138, 59, 0.45);
}

.rossogolla-section__feature:last-child {
  border-right: none;
}

.rossogolla-section__feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--rosso-gold);
  color: var(--rosso-maroon);
  font-size: 1.1rem;
  background: rgba(245, 235, 221, 0.35);
}

.rossogolla-section__feature-text {
  font-family: 'Noto Sans', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  color: var(--rosso-text);
}

.rossogolla-section__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.95rem 2.75rem;
  border: 1px solid var(--rosso-gold);
  border-radius: 3px;
  background: var(--rosso-burgundy);
  color: var(--rosso-cream);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(84, 23, 23, 0.2);
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.rossogolla-section__button:hover {
  background: var(--rosso-maroon);
  border-color: var(--rosso-gold-light);
  color: var(--rosso-cream);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(84, 23, 23, 0.28);
}

.rossogolla-section__button:focus-visible {
  outline: 2px solid var(--rosso-gold);
  outline-offset: 3px;
}

.rossogolla-section__content.is-animating > * {
  opacity: 0;
  transform: translateY(22px);
}

.rossogolla-section__content.is-visible > * {
  animation: rossoFadeUp 0.75s ease forwards;
}

.rossogolla-section__content.is-visible > *:nth-child(1) { animation-delay: 0.05s; }
.rossogolla-section__content.is-visible > *:nth-child(2) { animation-delay: 0.12s; }
.rossogolla-section__content.is-visible > *:nth-child(3) { animation-delay: 0.18s; }
.rossogolla-section__content.is-visible > *:nth-child(4) { animation-delay: 0.24s; }
.rossogolla-section__content.is-visible > *:nth-child(5) { animation-delay: 0.3s; }
.rossogolla-section__content.is-visible > *:nth-child(6) { animation-delay: 0.38s; }
.rossogolla-section__content.is-visible > *:nth-child(7) { animation-delay: 0.46s; }

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

@media (max-width: 1199.98px) {
  .rossogolla-section,
  .rossogolla-section__inner {
    min-height: 650px;
  }

  .rossogolla-section__content {
    padding: 2.5rem 1.25rem;
  }

  .rossogolla-section__title {
    font-size: clamp(3rem, 6.5vw, 4.5rem);
  }
}

@media (max-width: 767.98px) {
  .rossogolla-section {
    min-height: auto;
    background-position: center top;
    background-size: cover;
  }

  .rossogolla-section__inner {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .rossogolla-section__content {
    grid-column: 1;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: min(48vw, 320px) 1.25rem 2.5rem;
    background: linear-gradient(180deg, rgba(245, 235, 221, 0.15) 0%, rgba(245, 235, 221, 0.92) 18%, rgba(245, 235, 221, 0.98) 100%);
  }

  .rossogolla-section__feature {
    flex: 0 0 50%;
    max-width: 50%;
    border-right: none;
    padding: 0.75rem 0.35rem;
  }

  .rossogolla-section__feature:nth-child(odd) {
    border-right: 1px solid rgba(184, 138, 59, 0.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rossogolla-section__content.is-animating > * {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .rossogolla-section__button:hover {
    transform: none;
  }
}

/* =============================================
   KC DAS OUR STORY SECTION
   ============================================= */
.kc-das-story-section {
  --story-cream: #F7E8CF;
  --story-cream-light: #FFF8EA;
  --story-brown: #542B17;
  --story-brown-dark: #3D1E10;
  --story-red: #9E1715;
  --story-red-dark: #720D0C;
  --story-gold: #C8923E;
  --story-gold-light: #E1B86A;
  position: relative;
  width: 100%;
  max-width: 100%;
  background: var(--story-cream);
}

.kc-das-story-section__hero {
  position: relative;
  min-height: 720px;
  padding: 5rem 0 4rem;
  background-color: var(--story-cream);
  background-image: url('../assets/images/story/story-back.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.kc-das-story-section__hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 42%, rgba(255, 248, 234, 0.15) 0%, transparent 42%),
    linear-gradient(90deg, rgba(247, 232, 207, 0.72) 0%, rgba(247, 232, 207, 0.28) 48%, transparent 62%);
  pointer-events: none;
}

.kc-das-story-section__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "intro"
    "visual"
    "body";
  width: 100%;
  max-width: 100%;
}

.kc-das-story-section__intro { grid-area: intro; }
.kc-das-story-section__visual { grid-area: visual; }
.kc-das-story-section__body { grid-area: body; }

.kc-das-story-section__badge {
  display: inline-block;
  margin-bottom: 1.15rem;
  padding: 0.5rem 1.35rem;
  background: var(--story-red);
  border: 1px solid var(--story-gold);
  color: var(--story-cream-light);
  font-family: var(--font-serif);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(114, 13, 12, 0.18);
  clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 8px 100%, 0 50%);
}

.kc-das-story-section__title {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.01em;
}

.kc-das-story-section__title-line {
  display: block;
  color: var(--story-brown);
}

.kc-das-story-section__title-accent {
  display: block;
  color: var(--story-red);
}

.kc-das-story-section__divider {
  display: block;
  position: relative;
  width: min(260px, 85%);
  height: 18px;
  margin-bottom: 0.25rem;
}

.kc-das-story-section__divider::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, var(--story-gold) 12%, var(--story-gold) 38%, transparent 38%, transparent 62%, var(--story-gold) 62%, var(--story-gold) 88%, transparent);
}

.kc-das-story-section__divider::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid var(--story-gold);
  background:
    radial-gradient(circle at 50% 20%, var(--story-gold) 1px, transparent 1px),
    radial-gradient(circle at 20% 50%, var(--story-gold) 1px, transparent 1px),
    radial-gradient(circle at 80% 50%, var(--story-gold) 1px, transparent 1px),
    radial-gradient(circle at 50% 80%, var(--story-gold) 1px, transparent 1px),
    var(--story-cream);
}

.kc-das-story-section__body p {
  max-width: 540px;
  margin: 0 0 1.15rem;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.65;
  color: var(--story-brown);
}

.kc-das-story-section__bengali {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  max-width: 520px;
  margin-top: 1.35rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(200, 146, 62, 0.28);
}

.kc-das-story-section__bengali-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  color: var(--story-gold);
}

.kc-das-story-section__bengali-icon svg {
  width: 100%;
  height: 100%;
}

.kc-das-story-section__bengali p {
  margin: 0;
  font-family: var(--font-bengali);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  color: var(--story-red-dark);
}

.kc-das-story-section__visual {
  position: relative;
  min-height: 280px;
}

.kc-das-story-section__bowl {
  margin: 0;
  max-width: min(100%, 520px);
  margin-left: auto;
  margin-right: 0;
}

.kc-das-story-section__bowl img {
  border-radius: 50%;
  box-shadow: 0 24px 48px rgba(61, 30, 16, 0.18);
}

.kc-das-story-section__seal {
  position: absolute;
  right: clamp(0rem, 4vw, 2rem);
  bottom: clamp(0rem, 2vw, 1rem);
  width: 118px;
  height: 118px;
  transform: rotate(-10deg);
}

.kc-das-story-section__seal-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  padding: 0.65rem;
  border: 2px solid var(--story-gold);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, #fff8ea 0%, #f7e8cf 68%, #eddaba 100%);
  box-shadow: 0 10px 24px rgba(61, 30, 16, 0.16);
  text-align: center;
}

.kc-das-story-section__seal-inner::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px dashed rgba(200, 146, 62, 0.55);
  border-radius: 50%;
  pointer-events: none;
}

.kc-das-story-section__seal-top,
.kc-das-story-section__seal-tag {
  font-family: var(--font-serif);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--story-red);
}

.kc-das-story-section__seal-brand {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--story-red-dark);
}

.kc-das-story-section__features-panel {
  position: relative;
  margin-top: -1px;
  padding: 0 0 4rem;
  background: var(--story-cream-light);
  color: var(--story-brown);
}

.kc-das-story-section__wave {
  display: block;
  width: 100%;
  height: clamp(48px, 6vw, 88px);
  margin-bottom: 1.5rem;
  color: var(--story-cream-light);
  line-height: 0;
}

.kc-das-story-section__wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.kc-das-story-section__features-ornament {
  display: block;
  width: 12px;
  height: 12px;
  margin: 0 auto 1.75rem;
  border-radius: 50%;
  border: 1px solid var(--story-gold);
  background:
    radial-gradient(circle at 50% 18%, var(--story-gold) 1px, transparent 1px),
    radial-gradient(circle at 18% 50%, var(--story-gold) 1px, transparent 1px),
    radial-gradient(circle at 82% 50%, var(--story-gold) 1px, transparent 1px),
    radial-gradient(circle at 50% 82%, var(--story-gold) 1px, transparent 1px),
    var(--story-cream-light);
}

.kc-das-story-section__features {
  margin-bottom: 2.25rem;
}

.kc-das-story-section__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem 1rem;
  border-right: 1px solid rgba(200, 146, 62, 0.35);
}

.kc-das-story-section__feature:last-child {
  border-right: none;
}

.kc-das-story-section__feature-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  border: 1px dotted var(--story-gold);
  border-radius: 50%;
  color: var(--story-gold);
  font-size: 1.25rem;
  background: rgba(255, 248, 234, 0.65);
}

.kc-das-story-section__feature-title {
  margin: 0 0 0.55rem;
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--story-red);
}

.kc-das-story-section__feature-text {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--story-brown);
}

.kc-das-story-section__cta-wrap {
  text-align: center;
}

.kc-das-story-section__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 1rem 2.4rem;
  border: 1px solid var(--story-gold);
  background: linear-gradient(180deg, var(--story-red) 0%, var(--story-red-dark) 100%);
  color: var(--story-cream-light);
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(114, 13, 12, 0.22);
  clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 10px 100%, 0 50%);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.kc-das-story-section__cta-arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(225, 184, 106, 0.65);
  border-radius: 50%;
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}

.kc-das-story-section__cta:hover {
  color: var(--story-cream-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(114, 13, 12, 0.28);
}

.kc-das-story-section__cta:hover .kc-das-story-section__cta-arrow {
  transform: translateX(4px);
}

.kc-das-story-section__cta:focus-visible {
  outline: 2px solid var(--story-gold);
  outline-offset: 4px;
}

.kc-das-story-section__animate.is-animating:not(.is-visible) {
  opacity: 0;
  transform: translateY(22px);
}

.kc-das-story-section__animate.is-visible {
  animation: storyFadeUp 0.75s ease forwards;
}

@keyframes storyFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 992px) {
  .kc-das-story-section__hero {
    min-height: 780px;
    padding: 5.5rem 0 6rem;
    background-position: center center;
  }

  .kc-das-story-section__grid {
    grid-template-columns: minmax(0, 46%) minmax(0, 54%);
    grid-template-rows: auto 1fr;
    column-gap: 2rem;
    align-items: start;
    grid-template-areas:
      "intro visual"
      "body visual";
  }

  .kc-das-story-section__visual {
    min-height: 520px;
  }

  .kc-das-story-section__bowl {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  .kc-das-story-section__seal {
    right: 8%;
    bottom: 12%;
  }
}

@media (max-width: 991.98px) {
  .kc-das-story-section__hero {
    background-position: center top;
    padding-top: 4rem;
  }

  .kc-das-story-section__visual {
    max-width: 420px;
    margin: 0 auto;
  }

  .kc-das-story-section__bowl {
    opacity: 1;
    pointer-events: auto;
  }

  .kc-das-story-section__seal {
    right: 0;
    bottom: 0;
  }

  .kc-das-story-section__feature {
    border-right: none;
    border-bottom: 1px solid rgba(200, 146, 62, 0.25);
    padding-bottom: 1.5rem;
  }

  .kc-das-story-section__feature:last-child {
    border-bottom: none;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .kc-das-story-section__feature:nth-child(odd) {
    border-right: 1px solid rgba(200, 146, 62, 0.35);
  }

  .kc-das-story-section__feature:nth-child(-n+2) {
    border-bottom: 1px solid rgba(200, 146, 62, 0.25);
  }

  .kc-das-story-section__feature:nth-child(3),
  .kc-das-story-section__feature:nth-child(4) {
    border-bottom: none;
  }
}

@media (max-width: 767.98px) {
  .kc-das-story-section__hero {
    min-height: auto;
    padding-bottom: 2rem;
  }

  .kc-das-story-section__intro,
  .kc-das-story-section__body {
    text-align: center;
  }

  .kc-das-story-section__divider {
    margin-left: auto;
    margin-right: auto;
  }

  .kc-das-story-section__body p,
  .kc-das-story-section__bengali {
    margin-left: auto;
    margin-right: auto;
  }

  .kc-das-story-section__bengali {
    text-align: left;
  }

  .kc-das-story-section__cta {
    width: min(100%, 360px);
    padding-inline: 1.25rem;
    font-size: 0.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kc-das-story-section__animate {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .kc-das-story-section__cta:hover,
  .kc-das-story-section__cta:hover .kc-das-story-section__cta-arrow {
    transform: none;
  }
}

/* =============================================
   PROCESS SECTION — Grid Layout
   ============================================= */
.process-section {
  position: relative;
  padding: 5rem 0 6rem;
  background: linear-gradient(180deg, #FFFDF6 0%, #FBF4E3 55%, #F7EDD8 100%);
}

/* Howrah Bridge truss silhouette along the bottom */
.process-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  pointer-events: none;
  opacity: 0.22;
  background-repeat: repeat-x;
  background-position: bottom center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='140' viewBox='0 0 1200 140'%3E%3Cg fill='none' stroke='%23B8933D' stroke-width='1.6' stroke-linecap='round'%3E%3Cpath d='M0 118 H1200'/%3E%3Cpath d='M120 118 V30 M1080 118 V30'/%3E%3Cpath d='M120 30 H1080'/%3E%3Cpath d='M120 20 H1080'/%3E%3Cpath d='M120 118 L180 30 L240 118 L300 30 L360 118 L420 30 L480 118 L540 30 L600 118 L660 30 L720 118 L780 30 L840 118 L900 30 L960 118 L1020 30 L1080 118'/%3E%3C/g%3E%3C/svg%3E");
}

.process-section .container { position: relative; z-index: 1; }

/* --- Tagore note --- */
.tagore-note {
  position: relative;
  max-width: 720px;
  margin: 0 auto 3rem;
  padding: 2.25rem 1.75rem 1.75rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 20px;
  box-shadow: 0 10px 34px rgba(120, 90, 30, 0.08);
}

.tagore-note::before,
.tagore-note::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--taxi-yellow), transparent);
}

.tagore-note::before { top: 0; }
.tagore-note::after { bottom: 0; }

.tagore-quill {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--taxi-yellow);
  color: var(--taxi-black);
  box-shadow: 0 6px 18px rgba(201, 168, 76, 0.4);
}

.tagore-quill svg { width: 22px; height: 22px; }

.tagore-bn {
  font-family: var(--font-bengali);
  font-size: clamp(1.15rem, 3vw, 1.6rem);
  line-height: 1.7;
  color: var(--brown-dark);
  margin: 0 0 0.6rem;
}

.tagore-en {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.tagore-by {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.tagore-by span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.tagore-by small {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- Stage route (alternating editorial rows) --- */
.stage-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 1100px;
  margin-inline: auto;
}

.stage-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 96px 1fr;
  align-items: center;
}

.stage-visual { grid-column: 1; }
.stage-rail { grid-column: 2; }
.stage-copy { grid-column: 3; }

.stage-row:nth-child(even) .stage-visual { grid-column: 3; }
.stage-row:nth-child(even) .stage-copy {
  grid-column: 1;
  text-align: right;
}

.stage-rail {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stage-badge {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--taxi-yellow);
  border: 4px solid #FFFDF6;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--taxi-black);
  box-shadow: 0 8px 20px rgba(180, 140, 30, 0.35);
  transition: transform 0.4s var(--transition-smooth), box-shadow 0.4s;
}

.stage-row:hover .stage-badge {
  transform: rotate(-10deg) scale(1.08);
  box-shadow: 0 12px 28px rgba(180, 140, 30, 0.5);
}

/* photo panel */
.stage-visual { padding: 2.5rem 0; }

.stage-frame {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: 24px;
  overflow: hidden;
  border: 7px solid #fff;
  box-shadow: 0 22px 50px rgba(120, 90, 30, 0.2);
  transform: rotate(-1.6deg);
  transition: transform 0.6s var(--transition-cinematic), box-shadow 0.6s;
}

.stage-row:nth-child(even) .stage-frame { transform: rotate(1.6deg); }

.stage-row:hover .stage-frame {
  transform: rotate(0deg) translateY(-8px);
  box-shadow: 0 34px 70px rgba(120, 90, 30, 0.3);
}

.stage-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--transition-cinematic);
}

.stage-row:hover .stage-frame img { transform: scale(1.06); }

.stage-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 33, 24, 0) 45%, rgba(42, 33, 24, 0.55) 100%);
  opacity: 0.9;
  transition: opacity 0.6s;
}

.stage-row:hover .stage-frame::after { opacity: 0.55; }

.stage-stamp {
  position: absolute;
  left: 1.1rem;
  bottom: 0.9rem;
  z-index: 2;
  font-family: var(--font-bengali);
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

/* copy block */
.stage-copy {
  position: relative;
  padding: 0 2.75rem;
}

.stage-copy h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  color: var(--brown-dark);
  margin: 0 0 0.15rem;
}

.stage-bn {
  display: block;
  font-family: var(--font-bengali);
  font-size: 1.05rem;
  color: var(--gold-dark);
  margin-bottom: 0.85rem;
}

.stage-copy p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
  max-width: 42ch;
}

.stage-row:nth-child(even) .stage-copy p { margin-left: auto; }

.stage-detail {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.stage-detail::before {
  content: '';
  width: 22px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--taxi-yellow);
}

@media (max-width: 991.98px) {
  .stage-list { max-width: 560px; }

  .stage-row {
    grid-template-columns: 1fr;
    padding-bottom: 2.5rem;
  }

  .stage-visual,
  .stage-row:nth-child(even) .stage-visual {
    grid-column: 1;
    grid-row: 1;
    padding: 0;
  }

  .stage-copy,
  .stage-row:nth-child(even) .stage-copy {
    grid-column: 1;
    grid-row: 2;
    padding: 1.4rem 0 0;
    text-align: left;
  }

  .stage-rail {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 4;
    display: block;
    align-self: auto;
  }

  .stage-badge {
    width: 54px;
    height: 54px;
    font-size: 1.1rem;
  }

  .stage-frame,
  .stage-row:nth-child(even) .stage-frame {
    transform: none;
    border-width: 5px;
    border-radius: 20px;
  }

  .stage-row:nth-child(even) .stage-copy p { margin-left: 0; }
}

/* =============================================
   PACKAGING SECTION
   ============================================= */
.packaging-section {
  padding: 6rem 0;
  background: var(--off-white);
}

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

@media (min-width: 992px) {
  .packaging-grid { grid-template-columns: 1fr 1fr; }
}

.packaging-animation {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.pack-box {
  width: 280px;
  position: relative;
  perspective: 1000px;
}

.pack-lid {
  width: 100%;
  height: 40px;
  background: linear-gradient(135deg, var(--red-deep), #7A2222);
  border: 2px solid var(--gold);
  border-radius: 6px 6px 0 0;
  position: relative;
  z-index: 2;
  transform-origin: bottom center;
  transform-style: preserve-3d;
  will-change: transform;
}

.pack-lid::after {
  content: 'KC Das';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--gold-light);
  letter-spacing: 0.15em;
}

.pack-body {
  width: 100%;
  height: 200px;
  background: var(--cream);
  border: 2px solid var(--gold);
  border-top: none;
  border-radius: 0 0 6px 6px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 16px;
  align-content: center;
}

.pack-sweet {
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFF8E7, #F5E6C8);
  border: 1px solid rgba(201, 168, 76, 0.3);
  opacity: 0;
  transform: scale(0);
  transition: none;
}

.packaging-features {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

.packaging-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.packaging-features i { color: var(--gold-dark); }

/* =============================================
   KC DAS CELEBRATIONS SECTION
   ============================================= */
.kc-das-celebrations-section {
  --kc-cele-burgundy: #6f1f1f;
  --kc-cele-burgundy-dark: #5a1818;
  --kc-cele-gold: #c9a45c;
  --kc-cele-gold-light: #d2a85c;
  --kc-cele-maroon: #651d17;
  --kc-cele-cream: #fff8e8;
  --kc-cele-brown: #3b2116;
  position: relative;
  min-height: 850px;
  padding: 4.5rem 0 4rem;
  overflow: hidden;
  background-color: #f4ead7;
  background-image: url('../assets/images/celebrations/celebration-back.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.kc-das-celebrations-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(55, 25, 15, 0.08);
  pointer-events: none;
}

.kc-das-celebrations-section__inner {
  position: relative;
  z-index: 1;
}

.kc-das-celebrations-section__content {
  max-width: 920px;
  margin: 0 auto;
  padding: 1rem 0 0;
}

.kc-das-celebrations-section__since {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 0.65rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--kc-cele-maroon);
}

.kc-das-celebrations-section__since-line {
  display: block;
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(101, 29, 23, 0.55), transparent);
}

.kc-das-celebrations-section__brand {
  margin: 0 0 1.5rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.3;
  color: var(--kc-cele-maroon);
}

.kc-das-celebrations-section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--kc-cele-maroon);
}

.kc-das-celebrations-section__ornament {
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(101, 29, 23, 0.55), transparent);
}

.kc-das-celebrations-section__title {
  margin: 0 0 1.25rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.15rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--kc-cele-maroon);
}

.kc-das-celebrations-section__title-accent {
  display: inline-block;
  font-size: clamp(2.35rem, 5.5vw, 3.65rem);
  font-style: italic;
  font-weight: 600;
  color: var(--kc-cele-gold);
}

.kc-das-celebrations-section__text {
  max-width: 650px;
  margin: 0 auto 2rem;
  font-family: 'Noto Sans', system-ui, sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.75;
  color: rgba(59, 33, 22, 0.82);
}

.kc-das-celebrations-section__trust {
  list-style: none;
  margin: 0 auto 2rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  max-width: 720px;
}

.kc-das-celebrations-section__trust-item {
  flex: 1 1 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 0 0.75rem;
  border-right: 1px solid rgba(201, 164, 92, 0.45);
}

.kc-das-celebrations-section__trust-item:last-child {
  border-right: none;
}

.kc-das-celebrations-section__trust-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(201, 164, 92, 0.55);
  color: var(--kc-cele-gold);
  font-size: 1rem;
}

.kc-das-celebrations-section__trust-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: var(--kc-cele-maroon);
}

.kc-das-celebrations-section__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 190px;
  height: 52px;
  padding: 0 1.75rem;
  margin-bottom: 2.5rem;
  border-radius: 4px;
  background: var(--kc-cele-burgundy);
  border: 1px solid var(--kc-cele-gold);
  color: var(--kc-cele-cream);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(90, 24, 24, 0.22);
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.kc-das-celebrations-section__cta:hover {
  background: var(--kc-cele-burgundy-dark);
  border-color: var(--kc-cele-gold-light);
  color: var(--kc-cele-cream);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(90, 24, 24, 0.28);
}

.kc-das-celebrations-section__cards {
  max-width: 860px;
  margin: 0 auto;
}

.kc-das-celebrations-section__card {
  width: 100%;
  max-width: 250px;
  min-height: 182px;
  margin: 0 auto;
  padding: 1.35rem 1.1rem 1.25rem;
  text-align: center;
  border-radius: 14px;
  background: rgba(91, 40, 30, 0.72);
  border: 1px solid rgba(210, 169, 91, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 28px rgba(36, 19, 13, 0.18);
  color: var(--kc-cele-cream);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.kc-das-celebrations-section__card:hover {
  transform: translateY(-5px);
  border-color: rgba(210, 169, 91, 0.85);
  box-shadow: 0 16px 36px rgba(36, 19, 13, 0.28);
}

.kc-das-celebrations-section__card i {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 1.35rem;
  color: var(--kc-cele-gold);
  transition: transform 0.35s ease;
}

.kc-das-celebrations-section__card:hover i {
  transform: scale(1.05);
}

.kc-das-celebrations-section__card h3 {
  margin: 0 0 0.45rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--kc-cele-cream);
}

.kc-das-celebrations-section__card p {
  margin: 0;
  font-family: 'Noto Sans', system-ui, sans-serif;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 248, 232, 0.82);
}

.kc-das-celebrations-section__cta:focus-visible,
.kc-das-celebrations-section__card:focus-within {
  outline: 2px solid var(--kc-cele-gold);
  outline-offset: 3px;
}

@media (max-width: 991.98px) {
  .kc-das-celebrations-section {
    min-height: auto;
    padding: 3.5rem 0 3rem;
    background-position: center center;
  }
}

@media (max-width: 767.98px) {
  .kc-das-celebrations-section {
    background-position: center 30%;
  }

  .kc-das-celebrations-section__trust-item {
    flex: 0 0 50%;
    max-width: 50%;
    border-right: none;
    padding: 0.75rem 0.5rem;
  }

  .kc-das-celebrations-section__trust-item:nth-child(odd) {
    border-right: 1px solid rgba(201, 164, 92, 0.35);
  }

  .kc-das-celebrations-section__card {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kc-das-celebrations-section__card:hover,
  .kc-das-celebrations-section__card:hover i,
  .kc-das-celebrations-section__cta:hover {
    transform: none;
  }
}

/* =============================================
   KC DAS GALLERY SECTION
   ============================================= */
.kc-das-gallery-section {
  --kc-gallery-cream: #f4ead7;
  --kc-gallery-paper: #efe2ca;
  --kc-gallery-brown: #3b1d12;
  --kc-gallery-dark: #24130d;
  --kc-gallery-gold: #b88632;
  --kc-gallery-gold-light: #d2a85c;
  position: relative;
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
  background-color: var(--kc-gallery-cream);
  background-image: url('../assets/images/gallery/galary-back.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.kc-das-gallery-section .container {
  position: relative;
  z-index: 1;
}

/* Header */
.kc-das-gallery-section__header {
  max-width: 720px;
  margin: 0 auto 3rem;
}

.kc-das-gallery-section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--kc-gallery-gold);
}

.kc-das-gallery-section__ornament {
  display: block;
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--kc-gallery-gold-light), transparent);
}

.kc-das-gallery-section__title {
  margin: 0 0 1rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.35rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--kc-gallery-brown);
}

.kc-das-gallery-section__intro {
  margin: 0 auto;
  max-width: 560px;
  font-family: 'Noto Sans', system-ui, sans-serif;
  font-size: clamp(0.92rem, 1.6vw, 1.02rem);
  line-height: 1.75;
  color: rgba(59, 29, 18, 0.78);
}

.kc-das-gallery-section__divider {
  display: block;
  width: 54px;
  height: 2px;
  margin: 1.35rem auto 0;
  background: linear-gradient(90deg, transparent, var(--kc-gallery-gold), transparent);
}

/* Asymmetric gallery grid */
.kc-das-gallery-section__grid {
  display: grid;
  grid-template-columns: minmax(130px, 1.08fr) 1fr 1fr minmax(130px, 1.08fr);
  grid-template-rows: minmax(210px, 250px) minmax(210px, 250px);
  gap: 1rem;
  grid-template-areas:
    "rossogolla sandesh gulab doi"
    "rossogolla assorted assorted doi";
  margin-bottom: 3rem;
}

.kc-das-gallery-card {
  position: relative;
  display: block;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  text-decoration: none;
  color: #fff8ea;
  box-shadow: 0 14px 32px rgba(36, 19, 13, 0.14);
  transition: box-shadow 0.4s ease;
}

.kc-das-gallery-card:hover {
  box-shadow: 0 18px 40px rgba(36, 19, 13, 0.22);
}

.kc-das-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.kc-das-gallery-card:hover img {
  transform: scale(1.04);
}

.kc-das-gallery-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 8, 4, 0.05) 20%, rgba(18, 8, 4, 0.72) 100%);
  transition: background 0.4s ease;
}

.kc-das-gallery-card:hover .kc-das-gallery-card__shade {
  background: linear-gradient(180deg, rgba(18, 8, 4, 0.12) 15%, rgba(18, 8, 4, 0.82) 100%);
}

.kc-das-gallery-card__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1.35rem 1.1rem 1.25rem;
  text-align: center;
}

.kc-das-gallery-card__content--left {
  align-items: flex-start;
  text-align: left;
  padding-left: 1.35rem;
}

.kc-das-gallery-card__text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.kc-das-gallery-card__text strong {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff8ea;
}

.kc-das-gallery-card__text small {
  font-family: 'Noto Sans', system-ui, sans-serif;
  font-size: clamp(0.72rem, 1.2vw, 0.82rem);
  line-height: 1.45;
  color: rgba(255, 248, 234, 0.88);
}

.kc-das-gallery-card__btn {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(210, 168, 92, 0.85);
  background: rgba(184, 134, 50, 0.35);
  color: #fff8ea;
  font-size: 1rem;
  transition: transform 0.4s ease, background 0.4s ease;
}

.kc-das-gallery-card:hover .kc-das-gallery-card__btn {
  transform: scale(1.1);
  background: rgba(184, 134, 50, 0.55);
}

.kc-das-gallery-card--rossogolla {
  grid-area: rossogolla;
  border-radius: 999px;
}

.kc-das-gallery-card--rossogolla img {
  object-position: center 40%;
}

.kc-das-gallery-card--sandesh {
  grid-area: sandesh;
  border-radius: 22px;
}

.kc-das-gallery-card--sandesh img {
  object-position: center center;
}

.kc-das-gallery-card--gulab {
  grid-area: gulab;
  border-radius: 22px;
}

.kc-das-gallery-card--gulab img {
  object-position: center center;
}

.kc-das-gallery-card--assorted {
  grid-area: assorted;
  border-radius: 22px;
  background: var(--kc-gallery-dark);
}

.kc-das-gallery-card--assorted img {
  object-fit: cover;
  object-position: right center;
}

.kc-das-gallery-card--doi {
  grid-area: doi;
  border-radius: 999px;
}

.kc-das-gallery-card--doi img {
  object-position: center 35%;
}

.kc-das-gallery-card:focus-visible {
  outline: 2px solid var(--kc-gallery-gold);
  outline-offset: 3px;
}

/* Trust features */
.kc-das-gallery-section__features {
  list-style: none;
  margin: 0;
  padding: 1.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid rgba(184, 134, 50, 0.22);
}

.kc-das-gallery-section__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0 1rem;
  border-right: 1px solid rgba(184, 134, 50, 0.18);
}

.kc-das-gallery-section__feature:last-child {
  border-right: none;
}

.kc-das-gallery-section__feature-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(184, 134, 50, 0.45);
  color: var(--kc-gallery-gold);
  font-size: 1rem;
}

.kc-das-gallery-section__feature-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.kc-das-gallery-section__feature-text strong {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--kc-gallery-brown);
}

.kc-das-gallery-section__feature-text small {
  font-family: 'Noto Sans', system-ui, sans-serif;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(59, 29, 18, 0.72);
}

@media (max-width: 991.98px) {
  .kc-das-gallery-section__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(200px, 230px) minmax(200px, 230px) minmax(200px, 230px);
    grid-template-areas:
      "rossogolla doi"
      "sandesh gulab"
      "assorted assorted";
  }

  .kc-das-gallery-card--rossogolla,
  .kc-das-gallery-card--doi {
    border-radius: 28px;
  }
}

@media (max-width: 767.98px) {
  .kc-das-gallery-section {
    padding: 4rem 0 3.5rem;
  }

  .kc-das-gallery-section__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "rossogolla"
      "sandesh"
      "gulab"
      "assorted"
      "doi";
    gap: 1rem;
  }

  .kc-das-gallery-card {
    min-height: 260px;
    border-radius: 22px !important;
  }

  .kc-das-gallery-card--assorted {
    min-height: 220px;
  }

  .kc-das-gallery-section__features {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .kc-das-gallery-section__feature {
    border-right: none;
    padding: 0;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kc-das-gallery-card:hover img,
  .kc-das-gallery-card:hover .kc-das-gallery-card__btn {
    transform: none;
  }
}

/* =============================================
   CONTACT
   ============================================= */
.contact-section {
  padding: 6rem 0;
  background: var(--cream);
}

.contact-card {
  background: var(--off-white);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(201, 168, 76, 0.15);
  box-shadow: var(--shadow-soft);
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.contact-info i { color: var(--gold-dark); }
.contact-info a { color: var(--red-deep); font-weight: 500; }
.contact-info a:hover { color: var(--gold-dark); }

.contact-form .form-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-form .form-control {
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  background: var(--cream);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
  background: #fff;
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(10, 6, 4, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: var(--shadow-deep);
}

.lightbox-caption {
  color: var(--cream);
  margin-top: 1rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--cream);
  font-size: 1.5rem;
  padding: 0.5rem;
  transition: color 0.3s, transform 0.3s;
}

.lightbox-close:hover { color: var(--gold); transform: rotate(90deg); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  position: relative;
  background: var(--brown-dark);
  color: rgba(245, 237, 224, 0.7);
  padding: 5rem 0 2rem;
  overflow: hidden;
}

.footer-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23C9A84C' stroke-width='0.5'%3E%3Cpath d='M0 40h80M40 0v80M0 0l80 80M80 0L0 80'/%3E%3C/g%3E%3C/svg%3E");
}

.site-footer .container { position: relative; z-index: 1; }

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.footer-desc { font-size: 0.9rem; max-width: 300px; }

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
  font-size: 0.9rem;
  color: rgba(245, 237, 224, 0.6);
  transition: color 0.3s, padding-left 0.3s;
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold-light);
  font-size: 1.1rem;
  transition: all 0.3s var(--transition-smooth);
}

.social-links a:hover {
  background: var(--gold);
  color: var(--brown-dark);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(245, 237, 224, 0.4);
}

/* =============================================
   FOCUS STATES (Accessibility)
   ============================================= */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* =============================================
   KC DAS HERITAGE STORY SECTION
   ============================================= */
.kc-das-heritage-section {
  --kc-heritage-ivory: #F3E5CF;
  --kc-heritage-paper: #F8EEDC;
  --kc-heritage-brown: #3B2116;
  --kc-heritage-maroon: #651D17;
  --kc-heritage-gold: #B68A3A;
  --kc-heritage-gold-muted: #C7A15A;
  --kc-heritage-cream: #FFF8EA;
  --kc-heritage-soft: #76553D;
  position: relative;
  min-height: 900px;
  padding: 4.5rem 0 3.5rem;
  overflow: hidden;
  color: var(--kc-heritage-brown);
  background-color: var(--kc-heritage-ivory);
  border-top: 1px solid rgba(150, 110, 55, 0.35);
  border-bottom: 1px solid rgba(150, 110, 55, 0.35);
}

.kc-das-heritage-section__frame {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(150, 110, 55, 0.35);
  pointer-events: none;
  z-index: 1;
}

.kc-das-heritage-section__corner {
  position: absolute;
  width: 40px;
  height: 40px;
  color: var(--kc-heritage-gold);
  opacity: 0.75;
}

.kc-das-heritage-section__corner svg { width: 100%; height: 100%; }
.kc-das-heritage-section__corner--tl { top: -1px; left: -1px; }
.kc-das-heritage-section__corner--tr { top: -1px; right: -1px; }
.kc-das-heritage-section__corner--bl { bottom: -1px; left: -1px; }
.kc-das-heritage-section__corner--br { bottom: -1px; right: -1px; }

.kc-das-heritage-section__texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(182, 138, 58, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(118, 85, 61, 0.05) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
}

.kc-das-heritage-section__kolkata {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.kc-das-heritage-section__bridge {
  position: absolute;
  left: 10%;
  top: 0;
  width: 200%;
  max-width: none;
  height: 62%;
  transform: translateX(-50%);
  object-fit: cover;
  opacity: 0.26;
  filter: grayscale(100%) sepia(65%) contrast(1.08);
  mix-blend-mode: multiply;
  -webkit-mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.5) 70%,
    transparent 100%
  );
  mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.5) 70%,
    transparent 100%
  );
}

.kc-das-heritage-section__container {
  position: relative;
  z-index: 2;
}

.kc-das-heritage-section__layout {
  display: grid;
  grid-template-columns: 42% 58%;
  grid-template-areas:
    "intro visual"
    "founder visual";
  gap: 0 2rem;
  align-items: start;
}

.kc-das-heritage-section__intro { grid-area: intro; }
.kc-das-heritage-section__visual {
  grid-area: visual;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.kc-das-heritage-section__founder { grid-area: founder; }

/* Intro */
.kc-das-heritage-section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.25rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(0.68rem, 1.2vw, 0.8125rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--kc-heritage-gold);
}

.kc-das-heritage-section__label-line {
  display: block;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--kc-heritage-gold));
}

.kc-das-heritage-section__label-line:last-child {
  background: linear-gradient(90deg, var(--kc-heritage-gold), transparent);
}

.kc-das-heritage-section__title {
  margin: 0 0 0.85rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  color: var(--kc-heritage-maroon);
  line-height: 1.05;
  opacity: 0;
  transform: translateY(22px);
}

.kc-das-heritage-section__title.is-visible {
  animation: kcHeritageFadeUp 0.85s ease forwards;
}

.kc-das-heritage-section__title-line {
  display: block;
  font-size: clamp(2.25rem, 4.5vw, 3.4rem);
  letter-spacing: 0.02em;
}

.kc-das-heritage-section__title-brand {
  display: block;
  font-size: clamp(3.25rem, 7vw, 5.9rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.kc-das-heritage-section__since {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.35rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--kc-heritage-gold);
}

.kc-das-heritage-section__since-line {
  display: block;
  width: 42px;
  height: 1px;
  background: var(--kc-heritage-gold);
  opacity: 0.7;
}

.kc-das-heritage-section__story {
  max-width: 520px;
  margin: 0 0 1.75rem;
  font-family: 'Noto Sans', system-ui, sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.7;
  color: var(--kc-heritage-brown);
}

.kc-das-heritage-section__values {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}

.kc-das-heritage-section__value {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(150, 110, 55, 0.22);
}

.kc-das-heritage-section__value:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.kc-das-heritage-section__value-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  color: var(--kc-heritage-gold);
}

.kc-das-heritage-section__value-icon svg { width: 100%; height: 100%; }

.kc-das-heritage-section__value-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.kc-das-heritage-section__value-text strong {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--kc-heritage-maroon);
}

.kc-das-heritage-section__value-text span {
  font-family: 'Noto Sans', system-ui, sans-serif;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--kc-heritage-soft);
}

/* Product stage */
.kc-das-heritage-section__stage {
  position: relative;
  width: 100%;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kc-das-heritage-section__hero {
  position: relative;
  margin: 0;
  width: min(620px, 100%);
  opacity: 0;
  transform: scale(0.94);
}

.kc-das-heritage-section__hero.is-visible {
  animation: kcHeritageScaleIn 1s ease 0.1s forwards;
}

.kc-das-heritage-section__hero img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 35px rgba(60, 35, 20, 0.22));
  transition: transform 0.45s ease;
}

.kc-das-heritage-section__hero:hover img {
  transform: translateY(-8px);
}

/* Founder */
.kc-das-heritage-section__founder {
  padding-top: 2rem;
  opacity: 0;
  transform: translateY(18px);
}

.kc-das-heritage-section__founder.is-visible {
  animation: kcHeritageFadeUp 0.85s ease 0.2s forwards;
}

.kc-das-heritage-section__founder-inner {
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
}

.kc-das-heritage-section__founder-photo {
  flex: 0 0 auto;
  width: 88px;
  height: 108px;
  border: 1px solid rgba(150, 110, 55, 0.45);
  background: rgba(230, 210, 180, 0.35);
  overflow: hidden;
}

.kc-das-heritage-section__founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(30%) sepia(25%) contrast(1.02);
}

.kc-das-heritage-section__founder-label {
  display: block;
  margin-bottom: 0.2rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--kc-heritage-gold);
}

.kc-das-heritage-section__founder-name {
  margin: 0 0 0.75rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--kc-heritage-maroon);
}

.kc-das-heritage-section__quote {
  position: relative;
  margin: 0;
  padding-left: 1.5rem;
}

.kc-das-heritage-section__quote-mark {
  position: absolute;
  left: 0;
  top: -0.35rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--kc-heritage-gold);
  opacity: 0.85;
}

.kc-das-heritage-section__quote p {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  font-style: italic;
  line-height: 1.65;
  color: var(--kc-heritage-brown);
}

/* Signature sweets — below hero image */
.kc-das-heritage-section__signature {
  width: 100%;
  max-width: 620px;
  margin-top: 0.5rem;
  padding-top: 0.25rem;
}

.kc-das-heritage-section__signature-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kc-heritage-maroon);
}

.kc-das-heritage-section__signature-ornament {
  display: block;
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--kc-heritage-gold), transparent);
}

.kc-das-heritage-section__signature-grid {
  --bs-gutter-x: 0.75rem;
}

.kc-das-heritage-section__sweet {
  text-align: center;
  padding: 0.35rem 0.2rem;
  transition: transform 0.35s ease;
}

.kc-das-heritage-section__sweet:hover {
  transform: scale(1.03);
}

.kc-das-heritage-section__sweet img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(182, 138, 58, 0.4);
  margin-bottom: 0.4rem;
}

.kc-das-heritage-section__sweet h4 {
  margin: 0 0 0.2rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--kc-heritage-maroon);
}

.kc-das-heritage-section__sweet p {
  margin: 0;
  font-family: 'Noto Sans', system-ui, sans-serif;
  font-size: 0.68rem;
  line-height: 1.45;
  color: var(--kc-heritage-soft);
}

.kc-das-heritage-section__delivery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 620px;
  margin: 1rem 0 0;
  padding-bottom: 0.25rem;
  font-family: 'Noto Sans', system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kc-heritage-gold);
  text-align: center;
}

.kc-das-heritage-section__delivery-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

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

@keyframes kcHeritageScaleIn {
  to { opacity: 1; transform: scale(1); }
}

@keyframes kcHeritageFadeIn {
  to { opacity: 1; }
}

@media (max-width: 1199.98px) {
  .kc-das-heritage-section__layout {
    grid-template-columns: 48% 52%;
  }

  .kc-das-heritage-section__hero {
    width: min(540px, 100%);
  }
}

@media (max-width: 991.98px) {
  .kc-das-heritage-section {
    min-height: auto;
    padding: 3.5rem 0 2.75rem;
  }

  .kc-das-heritage-section__frame { inset: 12px; }

  .kc-das-heritage-section__layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "visual"
      "founder";
    gap: 0;
  }

  .kc-das-heritage-section__bridge {
    left: 8%;
    width: 220%;
    height: 50%;
    opacity: 0.2;
  }

  .kc-das-heritage-section__stage {
    max-width: 520px;
    margin: 0 auto;
  }

  .kc-das-heritage-section__hero {
    width: min(480px, 100%);
  }

  .kc-das-heritage-section__signature {
    max-width: 480px;
    margin-top: 0.75rem;
  }

  .kc-das-heritage-section__delivery {
    max-width: 480px;
  }

  .kc-das-heritage-section__label,
  .kc-das-heritage-section__title,
  .kc-das-heritage-section__since,
  .kc-das-heritage-section__story {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .kc-das-heritage-section__label {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .kc-das-heritage-section__delivery {
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 575.98px) {
  .kc-das-heritage-section__bridge {
    left: 50%;
    width: 260%;
    height: 44%;
    opacity: 0.16;
  }

  .kc-das-heritage-section__hero {
    width: min(360px, 100%);
  }

  .kc-das-heritage-section__signature,
  .kc-das-heritage-section__delivery {
    max-width: 360px;
  }

  .kc-das-heritage-section__sweet img {
    width: 52px;
    height: 52px;
  }

  .kc-das-heritage-section__founder-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .kc-das-heritage-section__quote {
    padding-left: 0;
    padding-top: 1.5rem;
  }

  .kc-das-heritage-section__quote-mark {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .kc-das-heritage-section__title,
  .kc-das-heritage-section__hero,
  .kc-das-heritage-section__founder {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .kc-das-heritage-section__sweet:hover,
  .kc-das-heritage-section__hero:hover img {
    transform: none;
  }
}

/* =============================================
   UTILITY
   ============================================= */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
}

/* 4K / Large screens */
@media (min-width: 2560px) {
  .container { max-width: 1600px; }
  .hero-title { font-size: 6rem; }
  .section-title { font-size: 4rem; }
}
