/* ===================================================================
   GAMBHIR RETAIL — BRAND DESIGN PORTFOLIO
   Design System & Global Styles
   =================================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Gambhir Retail Umbrella */
  --gr-navy: #1B2A4A;
  --gr-gold: #C9A96E;
  --gr-ivory: #F5F0E8;
  --gr-charcoal: #3A3A3A;
  --gr-silver: #D1D5DB;

  /* Jugnu Collections */
  --jc-coral: #E8735A;
  --jc-ivory: #FAF3EB;
  --jc-rose: #D4A5A5;
  --jc-brown: #4A3228;
  --jc-white: #FFF8F0;

  /* Trendwood Clothing */
  --tw-black: #2D2D2D;
  --tw-teal: #00BFA5;
  --tw-silver: #B0B0B0;
  --tw-white: #F2F2F2;
  --tw-red: #FF4444;

  /* Gulati Garments */
  --gg-yellow: #FFD166;
  --gg-blue: #73C2FB;
  --gg-mint: #A8E6CF;
  --gg-pink: #FFB7B2;
  --gg-midnight: #2C3E50;

  /* VoltEdge (Future) */
  --ve-blue: #0055FF;
  --ve-orange: #FF6B35;
  --ve-anthracite: #333333;

  /* Global - Light Theme */
  --bg-primary: #FDFCFB;
  --bg-secondary: #F8F9FA;
  --bg-card: rgba(0, 0, 0, 0.02);
  --bg-glass: rgba(255, 255, 255, 0.75);
  --border-glass: rgba(0, 0, 0, 0.08);
  --text-primary: #1A1C1E;
  --text-secondary: #4B5563;
  --text-muted: #71717A;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);

  /* Typography Scale */
  --font-display: 'Instrument Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-playful: 'Nunito', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 800ms;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50%;
}

/* --- 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(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* --- Scroll-based Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--duration-slow) var(--ease-out-expo),
              transform var(--duration-slow) var(--ease-out-expo);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity var(--duration-slow) var(--ease-out-expo),
              transform var(--duration-slow) var(--ease-out-expo);
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity var(--duration-slow) var(--ease-out-expo),
              transform var(--duration-slow) var(--ease-out-expo);
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity var(--duration-slow) var(--ease-out-expo),
              transform var(--duration-slow) var(--ease-out-expo);
}

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

/* stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0ms; }
.stagger-children .reveal:nth-child(2) { transition-delay: 100ms; }
.stagger-children .reveal:nth-child(3) { transition-delay: 200ms; }
.stagger-children .reveal:nth-child(4) { transition-delay: 300ms; }
.stagger-children .reveal:nth-child(5) { transition-delay: 400ms; }
.stagger-children .reveal:nth-child(6) { transition-delay: 500ms; }

/* ===================================================================
   NAVIGATION
   =================================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-md) var(--space-2xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--duration-normal) ease,
              backdrop-filter var(--duration-normal) ease,
              box-shadow var(--duration-normal) ease;
}

.nav.scrolled {
  background: rgba(253, 252, 251, 0.9);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--border-glass), var(--shadow-sm);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--gr-gold);
}

.nav__brand-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gr-navy), var(--gr-gold));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
}

.nav__links {
  display: flex;
  gap: var(--space-xl);
  list-style: none;
}

.nav__link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--duration-fast) ease;
  cursor: pointer;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gr-gold);
  transition: width var(--duration-normal) var(--ease-out-expo);
}

.nav__link:hover,
.nav__link.active {
  color: var(--text-primary);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-sm);
  background: none;
  border: none;
}

.nav__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: transform var(--duration-normal) var(--ease-spring),
              opacity var(--duration-fast) ease;
}

/* ===================================================================
   HERO SECTION
   =================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-5xl) var(--space-2xl);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: blur(2px);
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(253, 252, 251, 0.5) 0%,
    rgba(253, 252, 251, 0.8) 50%,
    var(--bg-primary) 100%
  );
}

/* Animated orbs */
.hero__orb {
  position: absolute;
  border-radius: var(--radius-full);
  filter: blur(80px);
  opacity: 0.3;
  animation: orbFloat 20s ease-in-out infinite;
}

.hero__orb--1 {
  width: 500px;
  height: 500px;
  background: var(--gr-navy);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
  opacity: 0.12;
}

.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: var(--gr-gold);
  bottom: -10%;
  left: -5%;
  animation-delay: -7s;
  opacity: 0.08;
}

.hero__orb--3 {
  width: 300px;
  height: 300px;
  background: var(--jc-coral);
  top: 40%;
  left: 30%;
  animation-delay: -14s;
  opacity: 0.1;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(15px, 30px) scale(1.02); }
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  border: 1px solid var(--border-glass);
  border-radius: 100px;
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gr-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-2xl);
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gr-gold);
  border-radius: var(--radius-full);
  animation: pulse 2s ease-in-out infinite;
}

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

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-xl);
}

.hero__title span {
  display: block;
}

.hero__title .highlight {
  background: linear-gradient(135deg, var(--gr-gold), #E8C98E, var(--gr-gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 200% center; }
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto var(--space-3xl);
  line-height: 1.8;
}

.hero__cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out-expo);
  border: none;
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gr-gold), #DFC08A);
  color: var(--gr-navy);
  box-shadow: 0 4px 24px rgba(201, 169, 110, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201, 169, 110, 0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: var(--bg-glass);
  border-color: var(--gr-gold);
  color: var(--gr-gold);
}

.btn__arrow {
  transition: transform var(--duration-fast) ease;
}

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

/* Hero stats */
.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3xl);
  margin-top: var(--space-4xl);
  padding-top: var(--space-3xl);
  border-top: 1px solid var(--border-glass);
}

.hero__stat {
  text-align: center;
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gr-gold);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: var(--space-xs);
}

/* ===================================================================
   SECTION COMMONS
   =================================================================== */
.section {
  padding: var(--space-5xl) var(--space-2xl);
  position: relative;
}

.section__container {
  max-width: 1200px;
  margin: 0 auto;
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.section__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gr-gold);
  margin-bottom: var(--space-lg);
}

.section__tag::before,
.section__tag::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gr-gold);
  opacity: 0.4;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-lg);
}

.section__desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===================================================================
   BRAND ARCHITECTURE SECTION
   =================================================================== */
.architecture {
  background: var(--bg-secondary);
}

.architecture__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3xl);
}

.arch__parent {
  background: linear-gradient(135deg, var(--gr-navy), #253A5C);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-3xl);
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  max-width: 500px;
  width: 100%;
}

.arch__parent-logo {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
}

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

.arch__parent-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gr-gold);
  letter-spacing: 0.05em;
}

.arch__parent-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: var(--space-xs);
}

.arch__connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.arch__connector-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, var(--gr-gold), transparent);
}

.arch__connector-branches {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.arch__connector-branches::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gr-gold);
  opacity: 0.3;
}

.arch__children {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  width: 100%;
  max-width: 1100px;
}

.arch__child {
  background: #FFFFFF;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-out-expo);
  box-shadow: var(--shadow-sm);
}

.arch__child::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.arch__child--jugnu::before { background: var(--jc-coral); }
.arch__child--trendwood::before { background: var(--tw-teal); }
.arch__child--gulati::before { background: var(--gg-yellow); }
.arch__child--voltedge::before { background: linear-gradient(90deg, var(--ve-blue), var(--ve-orange)); }

.arch__child:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.arch__child--voltedge {
  border-style: dashed;
  opacity: 0.7;
}

.arch__child-logo {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: var(--space-md);
}

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

.arch__child h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.arch__child p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.arch__child-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 100px;
  margin-top: var(--space-md);
}

.arch__child--jugnu .arch__child-tag { background: rgba(232,115,90,0.15); color: var(--jc-coral); }
.arch__child--trendwood .arch__child-tag { background: rgba(0,191,165,0.15); color: var(--tw-teal); }
.arch__child--gulati .arch__child-tag { background: rgba(255,209,102,0.15); color: var(--gg-yellow); }
.arch__child--voltedge .arch__child-tag { background: rgba(0,85,255,0.15); color: var(--ve-blue); }

.arch__endorsement {
  text-align: center;
  margin-top: var(--space-3xl);
  padding: var(--space-xl) var(--space-2xl);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.arch__endorsement-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.arch__endorsement-text {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-secondary);
  font-style: italic;
}

.arch__endorsement-text strong {
  color: var(--gr-gold);
  font-weight: 600;
}

/* ===================================================================
   VISUAL COHESION / RED THREAD SECTION
   =================================================================== */
.cohesion__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.cohesion__pillar {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  position: relative;
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.cohesion__pillar:hover {
  border-color: rgba(201, 169, 110, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.cohesion__pillar-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(201, 169, 110, 0.08);
  position: absolute;
  top: 12px;
  right: 20px;
  line-height: 1;
}

.cohesion__pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--gr-navy), rgba(201, 169, 110, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--space-lg);
}

.cohesion__pillar h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.cohesion__pillar p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===================================================================
   BRAND SHOWCASE SECTIONS
   =================================================================== */
.brand-section {
  position: relative;
  overflow: hidden;
}

.brand-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
}

/* Brand-specific theme backgrounds - Light Mode */
.brand-section--gambhir { background: linear-gradient(180deg, var(--bg-primary), #F3F5F9, var(--bg-primary)); }
.brand-section--jugnu { background: linear-gradient(180deg, var(--bg-primary), #F9F2F0, var(--bg-primary)); }
.brand-section--trendwood { background: linear-gradient(180deg, var(--bg-primary), #F0F5F4, var(--bg-primary)); }
.brand-section--gulati { background: linear-gradient(180deg, var(--bg-primary), #F5F6F5, var(--bg-primary)); }
.brand-section--voltedge { background: linear-gradient(180deg, var(--bg-primary), #F1F4FA, var(--bg-primary)); }

.brand__hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  margin-bottom: var(--space-4xl);
}

.brand__hero-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/10;
  box-shadow: var(--shadow-lg);
}

.brand__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.brand__hero-image:hover img {
  transform: scale(1.05);
}

.brand__hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  pointer-events: none;
}

.brand__hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.brand__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.brand-section--gambhir .brand__label { color: var(--gr-gold); }
.brand-section--jugnu .brand__label { color: var(--jc-coral); }
.brand-section--trendwood .brand__label { color: var(--tw-teal); }
.brand-section--gulati .brand__label { color: var(--gg-yellow); }
.brand-section--voltedge .brand__label { color: var(--ve-blue); }

.brand__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.brand__tagline {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-secondary);
  font-weight: 300;
}

.brand__archetype {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--border-glass);
  background: var(--bg-glass);
  font-size: 0.85rem;
  font-weight: 600;
  width: fit-content;
}

.brand__description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.brand__logo-container {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  width: fit-content;
  box-shadow: var(--shadow-md);
}

.brand__logo-container img {
  height: 80px;
  width: auto;
}

/* --- Personality Traits --- */
.brand__traits {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.brand__trait {
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--border-glass);
  background: var(--bg-glass);
  transition: all var(--duration-fast) ease;
}

.brand__trait:hover {
  background: rgba(255,255,255,0.1);
}

/* --- Brand Details Grid --- */
.brand__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

/* --- Color Palette --- */
.palette {
  background: #FFFFFF;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
}

.palette__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.palette__title-icon {
  font-size: 1.2rem;
}

.palette__colors {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.palette__color {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: #FDFDFD;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all var(--duration-fast) ease;
  cursor: pointer;
}

.palette__color:hover {
  border-color: var(--border-glass);
  background: rgba(255,255,255,0.05);
}

.palette__swatch {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}

.palette__swatch::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
}

.palette__info {
  flex: 1;
  min-width: 0;
}

.palette__name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.palette__hex {
  font-family: 'DM Sans', monospace;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.palette__role {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.palette__copied {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--gr-navy);
  color: var(--gr-gold);
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  z-index: 9999;
  opacity: 0;
  transition: all var(--duration-normal) var(--ease-spring);
  pointer-events: none;
}

.palette__copied.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* --- Typography Showcase --- */
.typography {
  background: #FFFFFF;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
}

.typography__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.typography__samples {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.typography__sample {
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border-glass);
}

.typography__sample:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.typography__sample-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.typography__sample-text {
  line-height: 1.3;
  margin-bottom: var(--space-xs);
}

.typography__sample-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --- Logo Concept --- */
.logo-concept {
  background: #FFFFFF;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  grid-column: 1 / -1;
  box-shadow: var(--shadow-sm);
}

.logo-concept__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo-concept__display {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.logo-concept__image {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  box-shadow: var(--shadow-md);
}

.logo-concept__image img {
  max-height: 200px;
  width: auto;
}

.logo-concept__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.logo-concept__element {
  display: flex;
  gap: var(--space-md);
}

.logo-concept__element-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  min-width: 100px;
  padding-top: 2px;
}

.logo-concept__element-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Brand Voice --- */
.brand-voice {
  background: #FFFFFF;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  grid-column: 1 / -1;
  box-shadow: var(--shadow-sm);
}

.brand-voice__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.brand-voice__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.brand-voice__item {
  text-align: center;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  background: #FDFDFD;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.brand-voice__item-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.brand-voice__item-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* ===================================================================
   FUTURE SECTION — VOLTEDGE
   =================================================================== */
.future__preview {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.future__visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: var(--shadow-lg);
}

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

.future__visual::after {
  content: 'COMING SOON';
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0,85,255,0.9);
  color: white;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.future__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.future__name {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
}

.future__name span {
  background: linear-gradient(135deg, var(--ve-blue), var(--ve-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.future__desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.future__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.future__spec {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  background: var(--bg-glass);
}

.future__spec-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.future__spec-value {
  font-size: 0.9rem;
  font-weight: 600;
}

/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
  border-top: 1px solid var(--border-glass);
  padding: var(--space-4xl) var(--space-2xl) var(--space-2xl);
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--space-3xl);
}

.footer__brand h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gr-gold);
  margin-bottom: var(--space-md);
}

.footer__brand p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 300px;
}

.footer__column h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.footer__column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__column li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--duration-fast) ease;
}

.footer__column li a:hover {
  color: var(--gr-gold);
}

.footer__bottom {
  max-width: 1200px;
  margin: var(--space-3xl) auto 0;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer__socials {
  display: flex;
  gap: var(--space-md);
}

.footer__social {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--duration-fast) ease;
  cursor: pointer;
}

.footer__social:hover {
  border-color: var(--gr-gold);
  color: var(--gr-gold);
  background: rgba(201, 169, 110, 0.1);
}

/* ===================================================================
   DIVIDER
   =================================================================== */
.divider {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glass), transparent);
}

/* ===================================================================
   BACK TO TOP
   =================================================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--gr-navy);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--duration-normal) var(--ease-out-expo);
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gr-gold);
  color: var(--gr-navy);
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1024px) {
  .brand__hero {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

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

  .logo-concept__display {
    grid-template-columns: 1fr;
  }

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

  .footer__container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .brand-voice__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: var(--space-3xl) var(--space-lg);
  }

  .hero {
    padding: var(--space-4xl) var(--space-lg);
  }

  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(20px);
    padding: var(--space-xl);
    gap: var(--space-lg);
  }

  .hero__stats {
    flex-direction: column;
    gap: var(--space-xl);
  }

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

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

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

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

/* ===================================================================
   CUSTOM SCROLLBAR
   =================================================================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(201, 169, 110, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(201, 169, 110, 0.4);
}

/* ===================================================================
   LOADING SCREEN
   =================================================================== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gr-navy), var(--gr-gold));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: white;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.loader__text {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.loader__bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
  overflow: hidden;
}

.loader__bar-fill {
  width: 0%;
  height: 100%;
  background: var(--gr-gold);
  border-radius: 2px;
  animation: loaderFill 2s var(--ease-out-expo) forwards;
}

@keyframes loaderFill {
  to { width: 100%; }
}

/* ===================================================================
   SELECTION
   =================================================================== */
::selection {
  background: rgba(201, 169, 110, 0.3);
  color: white;
}

/* ===================================================================
   BRAND RESOURCE CARDS (Jugnu Deep-Dive Links)
   =================================================================== */
.brand-resources {
  margin-top: var(--space-2xl);
  grid-column: 1 / -1;
}

.brand-resources__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.brand-resources__sub {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
}

.brand-resources__links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.brand-resource-card {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-xl) var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(232, 115, 90, 0.2);
  background: linear-gradient(135deg, #FFF8F0, #FAF3EB);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-out-expo);
  box-shadow: 0 4px 20px rgba(232, 115, 90, 0.06);
}

.brand-resource-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 115, 90, 0.08), transparent);
  opacity: 0;
  transition: opacity var(--duration-normal) ease;
}

.brand-resource-card:hover {
  border-color: rgba(232, 115, 90, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(232, 115, 90, 0.18);
}

.brand-resource-card:hover::before {
  opacity: 1;
}

.brand-resource-card:hover .brand-resource-card__arrow {
  transform: translateX(6px);
  color: var(--jc-coral);
}

.brand-resource-card__icon {
  font-size: 1.8rem;
  line-height: 1;
  color: var(--jc-coral);
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(232, 115, 90, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration-normal) ease;
}

.brand-resource-card:hover .brand-resource-card__icon {
  background: rgba(232, 115, 90, 0.22);
}

.brand-resource-card__body {
  flex: 1;
}

.brand-resource-card__label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--jc-brown, #4A3228);
  margin-bottom: 4px;
}

.brand-resource-card__desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.brand-resource-card__arrow {
  font-size: 1.3rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform var(--duration-normal) var(--ease-out-expo),
              color var(--duration-fast) ease;
}

/* ===================================================================
   BACK TO PORTFOLIO BUTTON (used in sub-pages)
   =================================================================== */
.back-to-portfolio {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  background: rgba(250, 243, 235, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(232, 115, 90, 0.25);
  color: #4A3228;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(74, 50, 40, 0.12);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.02em;
}

.back-to-portfolio:hover {
  background: #FAF3EB;
  border-color: #E8735A;
  color: #E8735A;
  transform: translateX(-3px);
  box-shadow: 0 8px 32px rgba(232, 115, 90, 0.2);
}

.back-to-portfolio__arrow {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.back-to-portfolio:hover .back-to-portfolio__arrow {
  transform: translateX(-3px);
}
