/* Vishwa Atelier — Ultra-Luxury Master Textile Design System */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Dark Obsidian Luxury Tokens (Hero & Night Accent Cards) */
  --bg-dark-obsidian: #090A0C;
  --bg-dark-surface: #111317;
  --bg-dark-card: #181B22;
  --text-dark-primary: #FAF8F5;
  --text-dark-secondary: #A3AAB8;

  /* Light Editorial Tokens (Process, Lookbook & Story) */
  --bg-light-cream: #F8F5EE;
  --bg-light-surface: #EFEBE3;
  --bg-light-card: #FFFFFF;
  --text-light-primary: #14171A;
  --text-light-secondary: #525866;

  /* Metallic Gold & Bronze Accents */
  --accent-gold-primary: #D4AF37;
  --accent-gold-hover: #E5C158;
  --accent-gold-dark: #A38220;
  --accent-gold-light: #F9F2D6;
  --accent-bronze: #8E733E;

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Borders & Shadows */
  --border-dark: rgba(255, 255, 255, 0.12);
  --border-light: rgba(20, 23, 26, 0.08);
  --border-gold: rgba(212, 175, 55, 0.4);
  --border-gold-subtle: rgba(212, 175, 55, 0.2);
  
  --shadow-subtle: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
  --shadow-luxury: 0 20px 50px -15px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 30px 70px -20px rgba(0, 0, 0, 0.16);
  --shadow-gold-glow: 0 10px 30px -5px rgba(212, 175, 55, 0.35);
  --shadow-modal: 0 40px 90px -20px rgba(0, 0, 0, 0.45);

  /* Glassmorphism */
  --glass-dark: rgba(9, 10, 12, 0.82);
  --glass-card: rgba(24, 27, 34, 0.75);
  --glass-light: rgba(248, 245, 238, 0.92);
  --backdrop-blur: blur(20px);

  /* Radii & Transitions */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* CSS Reset & Core Layout */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  font-family: var(--font-sans);
  color: var(--text-light-primary);
  background-color: var(--bg-light-cream);
  line-height: 1.6;
  font-size: 16px;
}

section[id], footer[id] {
  scroll-margin-top: 5rem;
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.015em;
}

.gold-text {
  background: linear-gradient(135deg, #F9F2D6 0%, var(--accent-gold-primary) 50%, var(--accent-gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

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

/* Expansive Desktop Container Layout */
.container {
  width: 92%;
  max-width: 1600px;
  margin: 0 auto;
}

/* Section Header Styling */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-gold-primary);
  margin-bottom: 16px;
}

.section-tag::before, .section-tag::after {
  content: '';
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold-primary));
}

.section-tag::after {
  background: linear-gradient(90deg, var(--accent-gold-primary), transparent);
}

.section-title {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  color: var(--text-light-primary);
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--text-light-secondary);
  max-width: 760px;
  line-height: 1.7;
}

/* Primary Gold Foil & Luxury Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
  position: relative;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, #E5C158 0%, var(--accent-gold-primary) 50%, var(--accent-gold-dark) 100%);
  color: #090A0C;
  font-weight: 700;
  box-shadow: var(--shadow-gold-glow);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px -5px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, #FFF0B3 0%, var(--accent-gold-hover) 50%, var(--accent-gold-primary) 100%);
}

.btn-outline-light {
  border: 1px solid var(--border-gold-subtle);
  color: var(--text-dark-primary);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: var(--backdrop-blur);
}

.btn-outline-light:hover {
  border-color: var(--accent-gold-primary);
  color: var(--accent-gold-primary);
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-3px);
}

/* 1. Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  padding: 14px 0;
  background: var(--glass-dark);
  backdrop-filter: var(--backdrop-blur);
  border-bottom: 1px solid var(--border-dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border: 1px solid var(--accent-gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold-primary);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.35rem;
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dark-primary);
}

.logo-text span {
  color: var(--accent-gold-primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 44px;
  list-style: none;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(250, 248, 245, 0.78);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold-primary), var(--accent-gold-hover));
  transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-dark-primary);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  color: var(--text-dark-primary);
  font-size: 1.8rem;
}

/* 2. Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  background-color: var(--bg-dark-obsidian);
  color: var(--text-dark-primary);
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: saturate(1.15) contrast(1.15);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(9, 10, 12, 0.25) 0%, rgba(9, 10, 12, 0.88) 100%),
              linear-gradient(to bottom, rgba(9, 10, 12, 0.5) 0%, rgba(9, 10, 12, 0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold-primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 28px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.hero-title {
  font-size: clamp(2.8rem, 5.8vw, 5.2rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 28px;
  color: var(--text-dark-primary);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--text-dark-secondary);
  font-weight: 300;
  max-width: 860px;
  margin: 0 auto 44px auto;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 36px 40px;
  background: var(--glass-card);
  backdrop-filter: var(--backdrop-blur);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border-dark);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent-gold-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dark-secondary);
}

/* 3. Manufacturing Process Showcase */
.process-section {
  padding: 140px 0;
  background-color: var(--bg-light-cream);
}

.stepper-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 60px;
  border-bottom: 2px solid var(--border-light);
  overflow-x: auto;
  scrollbar-width: none;
}

.stepper-nav::-webkit-scrollbar {
  display: none;
}

.stepper-tab {
  flex: 1;
  min-width: 220px;
  padding: 20px 16px;
  text-align: center;
  position: relative;
  background: transparent;
  opacity: 0.5;
  transition: var(--transition-smooth);
}

.stepper-tab.active, .stepper-tab:hover {
  opacity: 1;
}

.tab-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-gold-primary);
  margin-bottom: 6px;
}

.tab-title {
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light-primary);
}

.stepper-tab::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold-primary), var(--accent-gold-dark));
  transition: var(--transition-smooth);
}

.stepper-tab.active::after {
  width: 100%;
}

.process-pane {
  display: none;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  background: var(--bg-light-card);
  padding: 56px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-luxury);
  border: 1px solid var(--border-light);
}

.process-pane.active {
  display: grid;
  animation: fadeInUp 0.5s ease forwards;
}

.process-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--bg-dark-obsidian);
  min-height: 480px;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border-gold-subtle);
}

.process-media video, .process-media img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.media-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--glass-dark);
  color: var(--accent-gold-primary);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
  backdrop-filter: var(--backdrop-blur);
}

.process-details .step-tag {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold-primary);
  margin-bottom: 12px;
}

.process-details h3 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  color: var(--text-light-primary);
}

.process-details p {
  color: var(--text-light-secondary);
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border-light);
}

.spec-box {
  background: var(--bg-light-surface);
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent-gold-primary);
}

.spec-box-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light-secondary);
  margin-bottom: 6px;
}

.spec-box-val {
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text-light-primary);
}

/* 4. Lookbook Gallery */
/* 4. Lookbook Gallery & Interactive Swipe Slider */
.lookbook-section {
  padding: 120px 0;
  background-color: var(--bg-light-surface);
}

.lb-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.lb-tab-btn {
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-light-secondary);
  border: 1px solid var(--border-light);
  background: var(--bg-light-card);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lb-tab-btn.active, .lb-tab-btn:hover {
  background: var(--accent-gold-primary);
  color: var(--bg-dark-obsidian);
  border-color: var(--accent-gold-primary);
  box-shadow: var(--shadow-hover);
}

.lb-carousel-outer {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}

.lb-carousel-track-container {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-luxury);
  touch-action: pan-y pinch-zoom;
}

.lb-carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.lb-slide {
  min-width: 100%;
  box-sizing: border-box;
}

.lb-single-card {
  display: grid;
  grid-template-columns: 440px 1fr;
  background: var(--bg-light-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

@media (max-width: 960px) {
  .lb-single-card {
    grid-template-columns: 1fr;
  }
}

/* Rolling Image Styles (Strict 2:3 Portrait Aspect Ratio) */
.rolling-wrap {
  position: relative;
  height: auto;
  overflow: hidden;
  background: var(--bg-dark-obsidian);
}

.rolling-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  image-rendering: high-quality;
  image-rendering: -webkit-optimize-contrast;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.rolling-img.active {
  opacity: 1;
}

.rolling-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
  background: rgba(0, 0, 0, 0.45);
  padding: 6px 14px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.rolling-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.rolling-dot.active {
  background: var(--accent-gold-primary);
  width: 22px;
  border-radius: 10px;
}

/* Card Body */
.lb-card-body {
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lb-card-title {
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: var(--text-light-primary);
}

.lb-card-desc {
  color: var(--text-light-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.lb-btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* Arrows & Dots */
.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--glass-card);
  color: var(--text-light-primary);
  border: 1px solid var(--border-gold-subtle);
  font-size: 2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-luxury);
  backdrop-filter: blur(10px);
}

.lb-arrow:hover {
  background: var(--accent-gold-primary);
  color: var(--bg-dark-obsidian);
  border-color: var(--accent-gold-primary);
  transform: translateY(-50%) scale(1.1);
}

.lb-arrow-prev {
  left: -28px;
}

.lb-arrow-next {
  right: -28px;
}

@media (max-width: 1240px) {
  .lb-arrow-prev { left: 12px; }
  .lb-arrow-next { right: 12px; }
}

.lb-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.lb-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-light);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lb-dot.active {
  background: var(--accent-gold-primary);
  width: 32px;
  border-radius: 16px;
}

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

.fabric-card {
  background: var(--bg-light-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.fabric-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-gold-subtle);
}

.card-img-wrap {
  position: relative;
  height: 340px;
  overflow: hidden;
  background-color: var(--bg-dark-obsidian);
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fabric-card:hover .card-img-wrap img {
  transform: scale(1.08);
}

.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--glass-dark);
  color: var(--accent-gold-primary);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
  backdrop-filter: var(--backdrop-blur);
}

.card-info {
  padding: 32px;
}

.card-info h4 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: var(--text-light-primary);
}

.card-info p {
  font-size: 0.96rem;
  color: var(--text-light-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.spec-pill {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-bronze);
}

.quick-view-btn {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-gold-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.quick-view-btn:hover {
  color: var(--accent-gold-dark);
  transform: translateX(4px);
}

/* 5. Catalog Download Module */
.catalog-section {
  padding: 140px 0;
  background: linear-gradient(135deg, var(--bg-dark-obsidian) 0%, var(--bg-dark-surface) 100%);
  color: var(--text-dark-primary);
}

.catalog-card {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
  background: var(--bg-dark-card);
  padding: 64px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-gold-subtle);
  box-shadow: var(--shadow-modal);
}

.catalog-preview {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.catalog-preview img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.catalog-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--glass-dark);
  color: var(--accent-gold-primary);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  backdrop-filter: var(--backdrop-blur);
  border: 1px solid var(--border-gold);
}

.catalog-details h3 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--text-dark-primary);
}

.catalog-details p {
  color: var(--text-dark-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  padding: 24px 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.meta-item-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dark-secondary);
  margin-bottom: 6px;
}

.meta-item-val {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-gold-primary);
}

/* 6. Brand Story Section */
.story-section {
  padding: 140px 0;
  background-color: var(--bg-light-cream);
}

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

.story-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border-light);
}

.story-media img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.story-quote {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--accent-bronze);
  border-left: 4px solid var(--accent-gold-primary);
  padding-left: 24px;
  margin: 32px 0;
  line-height: 1.4;
}

/* 7. Footer */
.site-footer {
  background-color: var(--bg-dark-obsidian);
  color: var(--text-dark-primary);
  padding: 100px 0 40px;
  border-top: 1px solid var(--border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 80px;
}

.footer-brand p {
  color: var(--text-dark-secondary);
  margin-top: 20px;
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 380px;
}

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-gold-primary);
  margin-bottom: 24px;
}

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

.footer-links a {
  color: var(--text-dark-secondary);
  font-size: 0.95rem;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  border-top: 1px solid var(--border-dark);
  color: var(--text-dark-secondary);
  font-size: 0.88rem;
}

/* Modal Lightbox */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 10, 12, 0.88);
  backdrop-filter: var(--backdrop-blur);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.modal-backdrop.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.modal-card {
  background: var(--bg-light-card);
  max-width: 980px;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-modal);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  border: 1px solid var(--border-gold-subtle);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-light-surface);
  color: var(--text-light-primary);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: var(--shadow-subtle);
}

.modal-close:hover {
  background: var(--accent-gold-primary);
  color: #090A0C;
}

.modal-img-wrap {
  height: 100%;
  min-height: 440px;
  background-color: var(--bg-dark-obsidian);
}

.modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-body {
  padding: 48px;
}

.modal-body h3 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.modal-body p {
  color: var(--text-light-secondary);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 28px;
}

/* Keyframe Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .stat-item:nth-child(2)::after {
    display: none;
  }

  .process-pane {
    grid-template-columns: 1fr;
  }

  .catalog-card {
    grid-template-columns: 1fr;
  }

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

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

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

  .mobile-toggle {
    display: block;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat-item::after {
    display: none;
  }

  .modal-card {
    grid-template-columns: 1fr;
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal-img-wrap {
    height: 260px;
    min-height: 260px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* Group Entities Card Slider Responsive Rules (1 card per view < 1024px including 768px & 784px, 3 cards per view >= 1024px) */
.gc-card {
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  flex-shrink: 0 !important;
  box-sizing: border-box !important;
}

@media (min-width: 1024px) {
  .gc-card {
    width: calc((100% - 48px) / 3) !important;
    min-width: calc((100% - 48px) / 3) !important;
    max-width: calc((100% - 48px) / 3) !important;
  }
}

/* Cross-Platform Mobile Video Autoplay & Controls Suppression */
video {
  pointer-events: none !important;
}

video::-webkit-media-controls,
video::-webkit-media-controls-start-playback-button,
video::-webkit-media-controls-play-button,
video::-webkit-media-controls-panel,
video::-webkit-media-controls-enclosure,
video::-webkit-media-controls-overlay-play-button {
  display: none !important;
  -webkit-appearance: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Looms Journey Stepper Panes Swipe Touch Action */
.process-pane {
  touch-action: pan-y;
  user-select: none;
}

