/* ==========================================
   YUJEE BOUTIQUE - LUXURY ABOUT US STYLESHEET
   Primary: #691b2d | Accent: #D4AF37 | BG: #F8F4F1
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&display=swap');

:root {
  --maroon-primary: #691b2d;
  --maroon-dark: #4a121f;
  --maroon-deep: #380b16;
  --maroon-light: #8c253d;
  --gold-primary: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-dark: #B38F24;
  --bg-cream: #F8F4F1;
  --bg-cream-alt: #FFF8F5;
  --bg-white: #FFFFFF;
  --text-dark: #2A1D21;
  --text-muted: #6B5B60;
  --text-light: #F8F4F1;
  
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', sans-serif;
  --font-signature: 'Alex Brush', cursive;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-arch: 140px 140px 20px 20px;
  
  --shadow-soft: 0 10px 30px rgba(105, 27, 45, 0.08);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.18);
  --shadow-deep: 0 20px 40px rgba(42, 10, 18, 0.25);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: 1px solid rgba(212, 175, 55, 0.3);
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Global Reset & Base Styles */
.yujee-about-page {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-cream);
  overflow-x: hidden;
  line-height: 1.6;
}

.yujee-about-page * {
  box-sizing: border-box;
}

/* Container Utility */
.yujee-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Utilities */
.yujee-heading-large {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.yujee-heading-medium {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--maroon-primary);
  line-height: 1.25;
}

.yujee-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gold-primary);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.yujee-paragraph {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Gold Divider Ornament */
.gold-ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 12px 0 24px;
}

.gold-ornament-line {
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.gold-ornament-icon {
  color: var(--gold-primary);
  font-size: 14px;
}

/* Buttons */
.eyebrow-gold-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(105, 27, 45, 0.08) 100%);
  border: 1.5px solid var(--gold-primary);
  border-radius: 50px;
  color: var(--maroon-primary);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.22);
  transition: all 0.35s ease;
  cursor: default;
}

.eyebrow-gold-pill i {
  color: var(--gold-dark);
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.eyebrow-gold-pill:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--maroon-primary) 0%, var(--maroon-dark) 100%);
  color: var(--gold-primary);
  border-color: var(--gold-primary);
  box-shadow: 0 8px 24px rgba(105, 27, 45, 0.35);
}

.eyebrow-gold-pill:hover i {
  color: var(--gold-primary);
  transform: scale(1.2) rotate(10deg);
}

.btn-yujee-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #D4AF37 0%, #B38F24 100%);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
  transition: var(--transition);
  text-decoration: none;
}

.btn-yujee-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
  color: #FFFFFF;
}

.btn-yujee-maroon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--maroon-primary);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(105, 27, 45, 0.3);
  transition: var(--transition);
  text-decoration: none;
}

.btn-yujee-maroon:hover {
  background: var(--maroon-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(105, 27, 45, 0.45);
  color: #FFFFFF;
}

.btn-yujee-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: var(--maroon-primary);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--maroon-primary);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-yujee-outline:hover {
  background: var(--maroon-primary);
  color: #FFFFFF;
  transform: translateY(-3px);
}

/* ==========================================
   SECTION 1 — HERO & ACHIEVEMENTS (NEW ULTRA LUXURY STYLING)
   ========================================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #3D0914 0%, #1A0408 100%);
  color: #FFFFFF;
  padding: 140px 0 70px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 75% 40%, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-main-wrapper {
  position: relative;
  z-index: 5;
}

.hero-left-content {
  max-width: 600px;
}

.gold-gradient-text {
  background: linear-gradient(135deg, #FFF6D6 0%, #EAB75F 40%, #D4AF37 70%, #AA861D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-title-exact {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
  text-shadow: 0 4px 22px rgba(0,0,0,0.4);
}

.hero-subtitle-exact {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  font-style: italic;
  color: var(--gold-primary);
  margin-bottom: 14px;
}

.hero-description-exact {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero-action-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-yujee-outline-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-primary);
  font-weight: 600;
  font-size: 0.92rem;
  border: 1.5px solid var(--gold-primary);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.35s ease;
  text-decoration: none;
  backdrop-filter: blur(8px);
}

.btn-yujee-outline-hero:hover {
  background: var(--gold-primary);
  color: var(--maroon-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* Right Showcase Arch Frame */
.hero-arch-showcase {
  position: relative;
  display: flex;
  justify-content: center;
}

.arch-gold-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 480px;
  border-radius: 200px 200px 20px 20px;
  overflow: hidden;
  border: 3px solid var(--gold-primary);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.25);
  background: #2C070F;
}

.hero-arch-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.arch-gold-frame:hover .hero-arch-img {
  transform: scale(1.08);
}

.arch-badge-floating {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(45, 8, 16, 0.92);
  backdrop-filter: blur(12px);
  color: var(--gold-primary);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--gold-primary);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  white-space: nowrap;
}

/* Integrated Achievements Floating Bar */
.achievements-floating-bar-exact {
  margin-top: 60px;
  width: 100%;
}

.achievements-glass-card-exact {
  background: rgba(45, 8, 16, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  border-radius: 20px;
  padding: 26px 32px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.45);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
}

.achievement-item-exact {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  transition: transform 0.3s ease;
}

.achievement-item-exact:hover {
  transform: translateY(-4px);
}

.achievement-item-exact:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.45), transparent);
}

.achievement-icon-gold {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1.5px solid var(--gold-primary);
  color: var(--gold-primary);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.2);
}

.achievement-num-exact {
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF6D6 30%, #F3D98A 65%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  line-height: 1;
  text-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
}

.achievement-num-exact .symbol-gold {
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #F3D98A 0%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 2px;
  display: inline-block;
  vertical-align: top;
}

.achievement-lbl-exact {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 4px;
  white-space: nowrap;
}

/* ==========================================
   SECTION 2 / 3 — OUR JOURNEY
   ========================================== */
.journey-section {
  padding: 120px 0 90px;
  background-color: var(--bg-cream);
  position: relative;
}

.journey-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.journey-left {
  padding-right: 10px;
}

.year-badge {
  display: inline-block;
  background: var(--maroon-primary);
  color: var(--gold-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  padding: 8px 24px;
  border-radius: 30px;
  border: 1px solid var(--gold-primary);
  margin: 16px 0;
  box-shadow: 0 4px 15px rgba(105, 27, 45, 0.2);
}

.journey-middle-photos {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Continuous floating transition animation for Our Journey photo cards */
@keyframes journeyFloatLeft {
  0% {
    transform: rotate(-7deg) translateX(-45px) translateY(0px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  }
  50% {
    transform: rotate(-3deg) translateX(-40px) translateY(-14px);
    box-shadow: 0 25px 45px rgba(105, 27, 45, 0.25);
  }
  100% {
    transform: rotate(-7deg) translateX(-45px) translateY(0px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  }
}

@keyframes journeyFloatRight {
  0% {
    transform: rotate(6deg) translateX(45px) translateY(20px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  }
  50% {
    transform: rotate(10deg) translateX(40px) translateY(6px);
    box-shadow: 0 25px 45px rgba(105, 27, 45, 0.25);
  }
  100% {
    transform: rotate(6deg) translateX(45px) translateY(20px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  }
}

.photo-card-tilted {
  position: absolute;
  width: 220px;
  height: 290px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 6px solid #FFFFFF;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
}

.photo-card-left {
  animation: journeyFloatLeft 6s ease-in-out infinite;
  z-index: 1;
}

.photo-card-right {
  animation: journeyFloatRight 6s ease-in-out infinite;
  animation-delay: -3s;
  z-index: 2;
}

.photo-card-tilted img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card-tilted:hover {
  animation-play-state: paused;
  transform: scale(1.08) rotate(0deg) translate(0, 0) !important;
  z-index: 10 !important;
  box-shadow: 0 25px 50px rgba(105, 27, 45, 0.35) !important;
}

.journey-right-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.journey-feature-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.journey-feature-card:hover {
  transform: translateX(8px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.feature-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-cream);
  border: 1px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon-primary);
  font-size: 20px;
  flex-shrink: 0;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--maroon-primary);
  margin-bottom: 2px;
}

.feature-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ==========================================
   SECTION 4 — WHO WE ARE
   ========================================== */
.who-section {
  padding: 100px 0;
  background-color: var(--bg-cream-alt);
  position: relative;
}

.who-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.who-subheading {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--gold-dark);
  font-style: italic;
  margin-bottom: 24px;
}

.founder-portrait-card {
  text-align: center;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-soft);
  max-width: 400px;
  margin: 0 auto;
}

.founder-arch-frame {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-arch);
  overflow: hidden;
  border: 4px solid var(--gold-primary);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
  margin-bottom: 20px;
}

.founder-arch-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-signature {
  font-family: var(--font-signature);
  font-size: 2.8rem;
  color: var(--maroon-primary);
  margin-bottom: 4px;
  line-height: 1;
}

.founder-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.founder-subtitle {
  font-size: 0.88rem;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

/* ==========================================
   SECTION 5 — THE YUJEE PROMISE
   ========================================== */
.promise-section {
  padding: 100px 0;
  background-color: var(--bg-cream);
}

.section-header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.promise-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border-radius: 30px 30px 22px 22px;
  padding: 54px 26px 36px;
  text-align: center;
  position: relative;
  border: 1.5px solid rgba(212, 175, 55, 0.28);
  box-shadow: 0 14px 40px rgba(105, 27, 45, 0.06);
  transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  animation: promiseCardFloat 6s ease-in-out infinite;
  overflow: visible !important;
}

.promise-card:nth-child(1) { animation-delay: 0s; }
.promise-card:nth-child(2) { animation-delay: 1.5s; }
.promise-card:nth-child(3) { animation-delay: 3s; }
.promise-card:nth-child(4) { animation-delay: 4.5s; }

.promise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 25%;
  right: 25%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  border-radius: 4px;
}

/* Semi-transparent watermark number floating behind text */
.promise-watermark-num {
  position: absolute;
  top: 40px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 800;
  color: rgba(212, 175, 55, 0.08);
  line-height: 1;
  pointer-events: none;
  transition: all 0.4s ease;
  overflow: hidden;
  border-radius: 0 0 22px 0;
}

.promise-card:hover .promise-watermark-num {
  color: rgba(212, 175, 55, 0.18);
  transform: scale(1.1) translateX(-5px);
}

.promise-badge-icon {
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon-primary) 0%, var(--maroon-dark) 100%);
  border: 3px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 26px;
  box-shadow: 0 10px 25px rgba(105, 27, 45, 0.35);
  transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.promise-card:hover {
  transform: translateY(-16px) scale(1.025) !important;
  border-color: var(--gold-primary);
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFDF7 100%);
  box-shadow: 0 25px 60px rgba(212, 175, 55, 0.35);
  animation-play-state: paused;
}

.promise-card:hover .promise-badge-icon {
  transform: translateX(-50%) scale(1.15) rotate(12deg);
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  color: #FFFFFF;
  border-color: #FFFFFF;
  box-shadow: 0 14px 32px rgba(212, 175, 55, 0.55);
}

.promise-number {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.2em;
  margin-bottom: 8px;
  margin-top: 6px;
  text-transform: uppercase;
}

.promise-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--maroon-primary);
  margin-bottom: 12px;
}

.promise-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.promise-card-footer-line {
  width: 40px;
  height: 2px;
  background: rgba(212, 175, 55, 0.3);
  margin: 16px auto 0;
  transition: all 0.4s ease;
}

.promise-card:hover .promise-card-footer-line {
  width: 80px;
  background: var(--gold-primary);
}

/* ==========================================
   SECTION 6 — MEET THE MAKERS
   ========================================== */
.makers-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--maroon-deep) 0%, var(--maroon-primary) 100%);
  color: #FFFFFF;
  position: relative;
}

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

.maker-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}

.maker-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold-primary);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.maker-image-wrapper {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 3px solid var(--gold-primary);
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.maker-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.maker-exp-pill {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--maroon-primary);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.maker-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.maker-role {
  font-size: 0.85rem;
  color: var(--gold-primary);
  margin-bottom: 16px;
}

.maker-quote {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  line-height: 1.5;
  background: rgba(0, 0, 0, 0.2);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border-left: 2px solid var(--gold-primary);
}

/* ==========================================
   SECTION 7 — HOW WE WORK
   ========================================== */
.work-section {
  padding: 100px 0;
  background-color: var(--bg-cream);
}

.work-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 40px;
}

.work-step-item {
  text-align: center;
  position: relative;
  padding: 0 10px;
}

.work-step-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--maroon-primary);
  font-size: 26px;
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.work-step-item:hover .work-step-icon {
  background: var(--maroon-primary);
  color: var(--gold-primary);
  transform: scale(1.1);
  box-shadow: var(--shadow-gold);
}

.work-step-number {
  font-size: 0.8rem;
  color: var(--gold-dark);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.work-step-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--maroon-primary);
  margin-bottom: 8px;
}

.work-step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Connecting Arrow Lines between steps */
.work-step-item:not(:last-child)::after {
  content: '➔';
  position: absolute;
  right: -15px;
  top: 25px;
  color: var(--gold-primary);
  font-size: 18px;
  opacity: 0.6;
}

/* ==========================================
   SECTION 8 — OUR COLLECTIONS (CAROUSEL REDESIGN)
   ========================================== */
.collections-section {
  padding: 115px 0;
  background: linear-gradient(180deg, var(--bg-cream-alt) 0%, var(--bg-cream) 100%);
  position: relative;
  overflow: hidden;
}

.collections-header-wrapper {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.collections-title-large {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--maroon-primary);
  margin-top: 10px;
  letter-spacing: -0.01em;
}

.collections-subtitle-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 12px;
}

.collections-carousel-dots-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.carousel-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.3);
  border: 1.5px solid var(--gold-primary);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.carousel-dot.active,
.carousel-dot:hover {
  width: 28px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  border-color: var(--gold-primary);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.45);
}

.collections-carousel-wrapper {
  position: relative;
  padding: 10px 0;
}

.collections-carousel-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  scrollbar-width: none; /* Firefox */
}

.collections-carousel-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.collection-carousel-item {
  flex: 0 0 240px;
  scroll-snap-align: start;
}

.collection-circle-card {
  text-align: center;
  text-decoration: none;
  display: block;
  padding: 18px 14px 22px;
  border-radius: 24px;
  background: #FFFFFF;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 10px 30px rgba(105, 27, 45, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.collection-circle-image {
  position: relative;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  border: 3.5px solid var(--gold-primary);
  box-shadow: 0 10px 22px rgba(105, 27, 45, 0.15);
  transition: all 0.4s ease;
}

.collection-circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.circle-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(105, 27, 45, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 22px;
  opacity: 0;
  transition: all 0.35s ease;
}

.collection-circle-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 18px 40px rgba(212, 175, 55, 0.3);
}

.collection-circle-card:hover .collection-circle-image {
  border-color: var(--gold-dark);
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.4);
}

.collection-circle-card:hover .collection-circle-image img {
  transform: scale(1.15);
}

.collection-circle-card:hover .circle-hover-overlay {
  opacity: 1;
}

.collection-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--maroon-primary);
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.collection-subtext {
  font-size: 0.82rem;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.collection-circle-card:hover .collection-title {
  color: var(--gold-dark);
}

/* ==========================================
   SECTION 9 — PROMISE BANNER
   ========================================== */
.promise-banner-section {
  background: linear-gradient(135deg, var(--maroon-deep) 0%, var(--maroon-primary) 100%);
  color: #FFFFFF;
  padding: 80px 0 120px;
  position: relative;
  overflow: hidden;
}

.promise-banner-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.promise-banner-left {
  padding-right: 20px;
}

.promise-banner-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.promise-banner-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 580px;
}

.promise-banner-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.promise-banner-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* ==========================================
   SECTION 10 — CTA CARD & FOOTER
   ========================================== */
.cta-floating-container {
  position: relative;
  margin-top: -60px;
  z-index: 10;
  margin-bottom: 40px;
}

.cta-floating-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 40px 50px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--maroon-primary);
  margin-bottom: 8px;
}

.cta-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* Footer Overrides for Luxury Aesthetic */
.yujee-luxury-footer {
  background-color: var(--maroon-deep);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand-logo img {
  height: 48px;
  margin-bottom: 16px;
}

.footer-brand-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-column-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold-primary);
  margin-bottom: 20px;
}

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

.footer-links-list li {
  margin-bottom: 10px;
}

.footer-links-list a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links-list a:hover {
  color: var(--gold-primary);
}

.footer-gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
  margin: 30px 0;
}

.footer-copyright {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================================
   RESPONSIVE BREAKPOINTS
   ========================================== */

/* ==========================================
   MOBILE & TABLET RESPONSIVE STYLESHEET
   ========================================== */

/* Tablet (Max-Width: 1024px) */
@media (max-width: 1024px) {
  .hero-section {
    min-height: auto;
    padding: 60px 0 50px;
  }

  .hero-grid-2col {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .hero-left-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-logo-block {
    text-align: center;
  }

  .hero-gold-accent-line {
    margin: 14px auto 22px;
  }

  .hero-description-exact {
    margin: 0 auto 28px;
  }

  .hero-right-image-box {
    height: 400px;
    max-width: 540px;
    margin: 0 auto;
  }

  .achievements-glass-card-exact {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 24px 20px;
  }

  .achievement-item-exact:nth-child(2)::after {
    display: none;
  }

  .journey-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .journey-left {
    padding-right: 0;
  }

  .work-step-item:not(:last-child)::after {
    display: none;
  }

  .promise-banner-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .promise-banner-left {
    padding-right: 0;
  }

  .promise-banner-text {
    margin: 0 auto;
  }

  .promise-banner-image img {
    height: 240px;
  }

  .collection-carousel-item {
    flex: 0 0 calc(33.333% - 16px);
  }

  .cta-floating-card {
    flex-direction: column;
    text-align: center;
    padding: 34px 30px;
  }

  .cta-buttons {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile Phones (Max-Width: 768px) */
@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0 40px;
  }

  .hero-title-exact {
    font-size: 3.2rem;
    line-height: 1.1;
  }

  .hero-subtitle-exact {
    font-size: 1.2rem;
  }

  .hero-description-exact {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .hero-right-image-box {
    height: 320px;
    border-radius: 20px;
  }

  .achievements-glass-card-exact {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 18px 14px;
    border-radius: 16px;
  }

  .achievement-item-exact {
    gap: 10px;
  }

  .achievement-icon-gold {
    font-size: 22px;
    width: 38px;
    height: 38px;
  }

  .achievement-num-exact {
    font-size: 1.5rem;
  }

  .achievement-lbl-exact {
    font-size: 0.74rem;
  }

  .journey-section, .promise-section, .makers-section, .work-section, .collections-section, .promise-banner-section {
    padding: 60px 0;
  }

  .yujee-heading-medium {
    font-size: 2.1rem;
  }

  .journey-middle-photos {
    height: 280px;
  }

  .photo-card-tilted {
    width: 160px;
    height: 220px;
  }

  .work-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .collections-title-large {
    font-size: 2.4rem;
  }

  .collection-carousel-item {
    flex: 0 0 calc(50% - 10px);
  }

  .collection-circle-image {
    width: 130px;
    height: 130px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .btn-yujee-maroon, .btn-yujee-outline, .btn-yujee-gold {
    width: 100%;
    justify-content: center;
  }
}

/* Small Mobile Phones (Max-Width: 480px) */
@media (max-width: 480px) {
  .yujee-container {
    padding: 0 16px;
  }

  .hero-title-exact {
    font-size: 2.4rem;
  }

  .hero-subtitle-exact {
    font-size: 1.05rem;
  }

  .hero-logo-brand {
    font-size: 1.4rem;
  }

  .hero-right-image-box {
    height: 260px;
    border-radius: 16px;
  }

  .achievements-glass-card-exact {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }

  .achievement-item-exact {
    justify-content: center;
    padding-right: 0;
  }

  .achievement-item-exact::after {
    display: none !important;
  }

  .journey-middle-photos {
    height: 250px;
  }

  .photo-card-tilted {
    width: 140px;
    height: 195px;
  }

  .photo-card-left {
    transform: rotate(-4deg) translateX(-20px);
  }

  .photo-card-right {
    transform: rotate(4deg) translateX(20px) translateY(10px);
  }

  .promise-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 45px;
  }

  .promise-card {
    padding: 42px 18px 26px;
    border-radius: 22px;
  }

  .promise-badge-icon {
    width: 64px;
    height: 64px;
    font-size: 22px;
    top: -32px;
  }

  .makers-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .work-timeline {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .collections-title-large {
    font-size: 2.1rem;
  }

  .collections-subtitle-text {
    font-size: 1rem;
  }

  .collection-carousel-item {
    flex: 0 0 100%;
  }

  .collection-circle-image {
    width: 140px;
    height: 140px;
  }

  .cta-floating-card {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .cta-title {
    font-size: 1.35rem;
  }

  .cta-subtitle {
    font-size: 0.86rem;
  }
}
