/* ============================================================
   STAR CREATIONS INDIA — Corporate Fashion Portfolio
   Premium Dark Theme with Gold Accents
   ============================================================ */

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

/* ---- CSS Custom Properties ---- */
:root {
  --color-bg: #0a0a0a;
  --color-bg-secondary: #111111;
  --color-bg-tertiary: #1a1a1a;
  --color-surface: #141414;
  --color-surface-hover: #1e1e1e;
  --color-gold: #c9a84c;
  --color-gold-light: #dfc373;
  --color-gold-dark: #a68832;
  --color-text: #f0ece2;
  --color-text-secondary: #a09a8c;
  --color-text-muted: #6b6560;
  --color-border: rgba(201, 168, 76, 0.15);
  --color-border-light: rgba(255, 255, 255, 0.06);
  --color-white: #ffffff;
  --color-black: #000000;

  /* Poisoned Store brand colors */
  --color-poisoned-bg: #0a0a0a;
  --color-poisoned-accent: #e3fc02;
  --color-poisoned-text: #ffffff;

  /* Eliz Paris brand colors */
  --color-eliz-bg: #faf5ef;
  --color-eliz-accent: #c9a07a;
  --color-eliz-text: #2c2420;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-accent: 'Oswald', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 4px 30px rgba(201, 168, 76, 0.15);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-elegant: 0.6s cubic-bezier(0.23, 1, 0.32, 1);

  --max-width: 1400px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul, ol { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- Selection ---- */
::selection {
  background: var(--color-gold);
  color: var(--color-black);
}

/* ---- Custom Scrollbar ---- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-star {
  width: 60px;
  height: 60px;
  position: relative;
}

.preloader-star::before {
  content: '★';
  font-size: 60px;
  color: var(--color-gold);
  animation: starPulse 1.2s ease-in-out infinite;
}

@keyframes starPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.8) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.1) rotate(180deg); }
}

.preloader-text {
  font-family: var(--font-accent);
  font-size: 14px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--color-gold);
  animation: fadeInOut 1.5s ease-in-out infinite;
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  height: 64px;
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.site-logo img {
  height: 45px;
  width: auto;
  border-radius: 4px;
  transition: transform var(--transition-smooth);
}

.site-header.scrolled .site-logo img {
  height: 36px;
}

.site-logo:hover img {
  transform: scale(1.05);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-text-group span:first-child {
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  line-height: 1.2;
}

.logo-text-group .header-tagline {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  position: relative;
  padding: 8px 0;
  transition: color var(--transition-fast);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition-smooth);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-gold);
}

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

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-border);
  color: var(--color-gold);
  font-size: 22px;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.menu-toggle:hover {
  background: rgba(201, 168, 76, 0.1);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  padding: 20px 30px;
  z-index: 999;
  flex-direction: column;
  gap: 0;
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
  transform: translateY(-10px);
  opacity: 0;
  transition: all var(--transition-smooth);
}

.mobile-nav.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav a {
  padding: 14px 0;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border-light);
  transition: all var(--transition-fast);
}

.mobile-nav a:hover {
  color: var(--color-gold);
  padding-left: 10px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: brightness(0.5);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: 
    radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.6) 70%),
    linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.8) 100%);
}

/* Animated gold particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--color-gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle 6s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 8s; }
.particle:nth-child(2) { left: 25%; animation-delay: 1.2s; animation-duration: 6s; }
.particle:nth-child(3) { left: 40%; animation-delay: 2.5s; animation-duration: 7s; }
.particle:nth-child(4) { left: 55%; animation-delay: 0.8s; animation-duration: 9s; }
.particle:nth-child(5) { left: 70%; animation-delay: 3s; animation-duration: 6.5s; }
.particle:nth-child(6) { left: 85%; animation-delay: 1.8s; animation-duration: 8.5s; }
.particle:nth-child(7) { left: 15%; animation-delay: 4s; animation-duration: 7.5s; }
.particle:nth-child(8) { left: 50%; animation-delay: 2s; animation-duration: 6s; }
.particle:nth-child(9) { left: 65%; animation-delay: 3.5s; animation-duration: 9s; }
.particle:nth-child(10) { left: 90%; animation-delay: 0.5s; animation-duration: 7s; }

@keyframes floatParticle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.8; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 30px;
  animation: fadeInDown 1s ease 0.3s both;
}

.hero-badge .badge-dot {
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.6); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 24px;
  animation: fadeInUp 1s ease 0.5s both;
}

.hero-title .gold-text {
  color: var(--color-gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 300;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
  animation: fadeInUp 1s ease 0.7s both;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.9s both;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 1s ease 1.2s both;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--color-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

.scroll-text {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-black);
}

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

.btn-outline {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}

.btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
  transform: translateY(-2px);
}

.btn-arrow {
  transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ============================================================
   ABOUT / INTRO SECTION
   ============================================================ */
.about-section {
  padding: 120px 0;
  position: relative;
  background: var(--color-bg);
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg, var(--color-gold), transparent);
}

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

.about-label {
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--color-gold);
}

.about-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-white);
  margin-bottom: 24px;
}

.about-text {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 8px;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform var(--transition-elegant);
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.about-image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
}

/* ============================================================
   BRANDS SECTION
   ============================================================ */
.brands-section {
  padding: 120px 0;
  background: var(--color-bg-secondary);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 16px;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--color-gold);
  margin: 24px auto;
}

.section-subtitle {
  font-size: 16px;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Brand Cards */
.brands-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.brand-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-elegant);
  cursor: pointer;
  group: true;
}

.brand-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-border);
  box-shadow: var(--shadow-lg);
}

.brand-card-image {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.brand-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-elegant);
}

.brand-card:hover .brand-card-image img {
  transform: scale(1.08);
}

.brand-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.8) 100%);
}

.brand-card-logo {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-card-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 6px 16px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-white);
}

.brand-card-content {
  padding: 32px;
}

.brand-card-name {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-card-name .external-icon {
  font-size: 16px;
  color: var(--color-gold);
  opacity: 0;
  transform: translateX(-5px);
  transition: all var(--transition-fast);
}

.brand-card:hover .brand-card-name .external-icon {
  opacity: 1;
  transform: translateX(0);
}

.brand-card-desc {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.brand-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.brand-tag {
  padding: 6px 14px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 50px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-gold);
}

.brand-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  transition: all var(--transition-fast);
}

.brand-card-link:hover {
  gap: 14px;
  color: var(--color-gold-light);
}

/* Brand-specific accents */
.brand-card.poisoned .brand-card-badge {
  background: rgba(227, 252, 2, 0.15);
  color: var(--color-poisoned-accent);
  border-color: rgba(227, 252, 2, 0.3);
}

.brand-card.poisoned .brand-tag {
  background: rgba(227, 252, 2, 0.06);
  border-color: rgba(227, 252, 2, 0.15);
  color: var(--color-poisoned-accent);
}

.brand-card.poisoned .brand-card-link {
  color: var(--color-poisoned-accent);
}

.brand-card.eliz .brand-card-badge {
  background: rgba(201, 160, 122, 0.15);
  color: var(--color-eliz-accent);
  border-color: rgba(201, 160, 122, 0.3);
}

.brand-card.eliz .brand-tag {
  background: rgba(201, 160, 122, 0.06);
  border-color: rgba(201, 160, 122, 0.15);
  color: var(--color-eliz-accent);
}

.brand-card.eliz .brand-card-link {
  color: var(--color-eliz-accent);
}

/* ============================================================
   VISION / MISSION / VALUES
   ============================================================ */
.values-section {
  padding: 120px 0;
  background: var(--color-bg);
  position: relative;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.value-card {
  padding: 48px 36px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition-smooth);
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-border);
  box-shadow: var(--shadow-gold);
}

.value-card:hover::before {
  width: 100%;
}

.value-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: inline-block;
  transition: transform var(--transition-smooth);
}

.value-card:hover .value-icon {
  transform: scale(1.15);
}

.value-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 12px;
}

.value-text {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* ============================================================
   MARQUEE / TICKER
   ============================================================ */
.marquee-section {
  padding: 40px 0;
  background: var(--color-gold);
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 20s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: var(--font-accent);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-black);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 30px;
}

.marquee-item .dot {
  width: 8px;
  height: 8px;
  background: var(--color-black);
  border-radius: 50%;
  opacity: 0.4;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   TIMELINE / JOURNEY SECTION
   ============================================================ */
.journey-section {
  padding: 120px 0;
  background: var(--color-bg-secondary);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--color-gold), var(--color-gold), transparent);
}

.timeline-item {
  display: flex;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  justify-content: flex-start;
  padding-right: calc(50% + 40px);
  text-align: right;
}

.timeline-item:nth-child(even) {
  justify-content: flex-end;
  padding-left: calc(50% + 40px);
  text-align: left;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: var(--color-gold);
  border-radius: 50%;
  border: 3px solid var(--color-bg-secondary);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.2);
  z-index: 1;
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--color-white);
  margin-bottom: 8px;
}

.timeline-text {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ============================================================
   CTA / CONTACT SECTION
   ============================================================ */
.cta-section {
  padding: 120px 0;
  background: var(--color-bg);
  position: relative;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 16px;
}

.cta-text {
  font-size: 16px;
  color: var(--color-text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
}

.cta-email {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--color-gold);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.cta-email:hover {
  color: var(--color-gold-light);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-black);
  border-top: 1px solid var(--color-border);
  padding: 80px 0 0;
}

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

.footer-col h3 {
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 24px;
}

.footer-about-text {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  color: var(--color-text-secondary);
  font-size: 16px;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
}

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

.footer-brand-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.footer-brand-item:hover {
  border-color: var(--color-border);
  transform: translateX(4px);
}

.footer-brand-item img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.footer-brand-item span {
  font-size: 13px;
  color: var(--color-text-secondary);
  font-weight: 500;
}

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

.footer-bottom p {
  font-size: 13px;
  color: var(--color-text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

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

/* ============================================================
   SCROLL-TO-TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--color-gold);
  color: var(--color-black);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-smooth);
  z-index: 999;
  box-shadow: var(--shadow-gold);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(201, 168, 76, 0.3);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* Scroll reveal animation classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .header-inner { padding: 0 24px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    padding-right: 0;
    padding-left: 50px;
    text-align: left;
    justify-content: flex-start;
  }

  .timeline::before {
    left: 0;
  }

  .timeline-dot {
    left: 0;
  }
}

@media (max-width: 768px) {
  :root { --header-height: 64px; }

  .main-nav { display: none; }
  .menu-toggle { display: flex; }

  .hero-title {
    font-size: clamp(32px, 8vw, 50px);
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .stat-item { flex: 1; min-width: 120px; }

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

  .brand-card-image {
    height: 280px;
  }

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

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

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .header-inner { padding: 0 16px; }

  .logo-text-group span:first-child {
    font-size: 14px;
    letter-spacing: 2px;
  }

  .logo-text-group .header-tagline {
    display: none;
  }

  .brand-card-content { padding: 24px; }
  .brand-card-name { font-size: 22px; }

  .value-card { padding: 32px 24px; }

  .about-section, .brands-section, .values-section, .journey-section, .cta-section {
    padding: 80px 0;
  }
}
