/* ================================================
   JUNIOR MEDIA 2026 — Main CSS
   Design: Dark aurora / Gen Z bento grid
   ================================================ */

/* ---- TOKENS ---- */
:root {
  --bg:        #06060F;
  --bg-2:      #0D0D1C;
  --surface:   #12121F;
  --surface-2: #1A1A2E;
  --glass:     rgba(255,255,255,0.04);
  --glass-b:   rgba(255,255,255,0.08);
  --border:    rgba(255,255,255,0.08);
  --border-h:  rgba(255,255,255,0.16);

  --text:      #F0EEE9;
  --muted:     rgba(240,238,233,0.58);
  --faint:     rgba(240,238,233,0.30);

  --lime:      #C8FF4D;
  --lime-d:    #A8E030;
  --purple:    #7C3AED;
  --cyan:      #06B6D4;
  --pink:      #EC4899;
  --amber:     #F59E0B;

  --gz: linear-gradient(135deg, #06B6D4 0%, #7C3AED 38%, #EC4899 68%, #F59E0B 100%);
  --gz-text: linear-gradient(90deg, #06B6D4, #7C3AED, #EC4899);

  --she-rose:  #F9A8C4;
  --she-dark:  #1A0A12;

  --r:    12px;
  --r-lg: 20px;
  --r-xl: 28px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---- NOISE TEXTURE ---- */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.35;
}

/* ---- LAYOUT ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.25rem,4vw,2.5rem); position: relative; z-index: 1; }

/* ---- TYPE ---- */
.overline {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--faint); display: block; margin-bottom: 1rem;
}
h1, h2, h3 { font-family: 'Syne', sans-serif; font-weight: 800; line-height: 1.06; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
p { line-height: 1.7; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.8rem; border-radius: 100px; font-size: 0.9rem;
  font-weight: 600; transition: transform 0.22s var(--ease-out-expo), box-shadow 0.22s ease;
  white-space: nowrap; cursor: pointer; position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: rgba(255,255,255,0); transition: background 0.2s ease;
}
.btn:hover::after { background: rgba(255,255,255,0.08); }
.btn:hover { transform: translateY(-2px); }

.btn-lime { background: var(--lime); color: #06060F; font-weight: 700; }
.btn-lime:hover { box-shadow: 0 0 30px rgba(200,255,77,0.4); transform: translateY(-2px); }

.btn-glass {
  background: var(--glass); color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.btn-glass:hover { border-color: var(--border-h); }

.btn-arrow::after { content: none; }
.btn .arrow { transition: transform 0.2s ease; display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

/* ================================================
   NAV
   ================================================ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 0;
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: rgba(6,6,15,0.75);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.05rem;
  letter-spacing: -0.02em; color: var(--text);
}
.nav-logo-mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--gz); display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 800; color: #fff; flex-shrink: 0;
  animation: logoSpin 8s linear infinite;
}
@keyframes logoSpin {
  0%,100% { filter: hue-rotate(0deg); }
  50%      { filter: hue-rotate(30deg); }
}

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.86rem; font-weight: 500; color: var(--muted);
  transition: color 0.2s ease; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--lime); transform: scaleX(0);
  transition: transform 0.25s var(--ease-out-expo); transform-origin: left;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }

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

/* Aurora orbs */
.aurora {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.5;
  animation: orbFloat 12s ease-in-out infinite;
}
.orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, #7C3AED88, transparent 70%); top: -100px; left: -100px; animation-delay: 0s; }
.orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, #06B6D488, transparent 70%); top: 10%; right: -80px; animation-delay: -4s; }
.orb-3 { width: 400px; height: 400px; background: radial-gradient(circle, #EC489966, transparent 70%); bottom: 0; left: 30%; animation-delay: -8s; }
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(30px,-40px) scale(1.05); }
  66%      { transform: translate(-20px,30px) scale(0.97); }
}

.hero-photo-wrap {
  position: absolute; inset: 0; z-index: 1;
}
.hero-photo {
  width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
  opacity: 0.18; filter: saturate(0.3);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,6,15,0.3) 0%, rgba(6,6,15,0.7) 60%, var(--bg) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  padding: 10rem 0 6rem; max-width: 900px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--glass); border: 1px solid var(--border);
  padding: 0.4rem 1rem 0.4rem 0.5rem; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; color: var(--muted);
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 22px; height: 22px; border-radius: 50%; background: var(--gz);
  display: flex; align-items: center; justify-content: center; font-size: 0.6rem; flex-shrink: 0;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 0 rgba(124,58,237,0.6); }
  50%      { box-shadow: 0 0 0 6px rgba(124,58,237,0); }
}

.hero-content h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1.0; margin-bottom: 1.5rem;
  color: var(--text);
}
.hero-content h1 .grad {
  background: var(--gz-text); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  background-size: 200% 100%;
  animation: textShimmer 4s linear infinite;
}
@keyframes textShimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem); line-height: 1.7;
  color: var(--muted); max-width: 560px; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Word reveal animation */
.reveal-word {
  display: inline-block;
  opacity: 0; transform: translateY(24px);
  animation: wordUp 0.6s var(--ease-out-expo) forwards;
}
@keyframes wordUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--border-h));
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(1.2); }
}
.scroll-label { font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }

/* ================================================
   MARQUEE
   ================================================ */
.marquee-strip {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--surface); overflow: hidden; padding: 1rem 0;
}
.marquee-track {
  display: flex; gap: 0; width: max-content;
  animation: marqueeRoll 28s linear infinite;
}
@keyframes marqueeRoll { to { transform: translateX(-50%); } }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 1.2rem;
  padding: 0 2.5rem; white-space: nowrap;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint);
  transition: color 0.2s;
}
.marquee-item:hover { color: var(--text); }
.marquee-sep {
  width: 4px; height: 4px; border-radius: 50%; background: var(--border-h); flex-shrink: 0;
}

/* ================================================
   STATS
   ================================================ */
.stats-section { padding: 5rem 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
}
.stat-card {
  background: var(--surface); padding: 2.5rem 2rem;
  transition: background 0.2s ease;
}
.stat-card:hover { background: var(--surface-2); }
.stat-num {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 3rem; letter-spacing: -0.06em; line-height: 1;
  background: var(--gz); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  display: block; margin-bottom: 0.4rem;
}
.stat-label { font-size: 0.82rem; color: var(--muted); font-weight: 500; }

/* ================================================
   ABOUT
   ================================================ */
.about-section { padding: clamp(5rem,10vw,9rem) 0; }
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; }
.about-overline { color: var(--lime); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; display: block; margin-bottom: 1rem; }
.about-text h2 { margin-bottom: 1.4rem; }
.about-text p { color: var(--muted); font-size: 1rem; line-height: 1.75; margin-bottom: 1rem; }
.about-text p:last-of-type { margin-bottom: 2rem; }

.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-top: 2rem; }
.pillar {
  padding: 1rem 1.2rem;
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--r); transition: border-color 0.2s ease;
}
.pillar:hover { border-color: var(--border-h); }
.pillar h4 { font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 0.2rem; }
.pillar p { font-size: 0.78rem; color: var(--muted); margin: 0; line-height: 1.5; }

.about-photo-wrap {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--border);
}
.about-photo-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(124,58,237,0.3));
  pointer-events: none;
}
.about-photo-wrap img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 20%; }
.about-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem; z-index: 2;
  background: rgba(6,6,15,0.85); backdrop-filter: blur(12px);
  border: 1px solid var(--border); border-radius: var(--r);
  padding: 1rem 1.2rem;
}
.about-badge strong { display: block; font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 800; line-height: 1; background: var(--gz); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-badge span { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); }

/* ================================================
   BRANDS — BENTO GRID
   ================================================ */
.brands-section { padding: clamp(5rem,10vw,9rem) 0; }
.brands-head { margin-bottom: 3rem; }
.brands-head h2 { margin-top: 0.5rem; margin-bottom: 0.8rem; }
.brands-head p { color: var(--muted); max-width: 540px; font-size: 1rem; }

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}

/* Card base */
.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;
  cursor: default;
  position: relative;
}
.bento-card:hover {
  border-color: var(--border-h);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5), 0 0 0 1px var(--border-h);
}

/* GZ — wide left */
.bento-gz {
  grid-column: 1 / 8; grid-row: 1;
  background: linear-gradient(135deg, #06060F 0%, #0D0820 50%, #130918 100%);
  min-height: 380px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2.5rem;
}
.bento-gz:hover { box-shadow: 0 24px 60px rgba(124,58,237,0.25), 0 0 0 1px rgba(124,58,237,0.4); }
.gz-orb-bg {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.gz-orb-bg span {
  position: absolute; border-radius: 50%; filter: blur(60px);
}
.gz-orb-bg span:nth-child(1) { width: 280px; height: 280px; background: rgba(124,58,237,0.3); top: -60px; right: 20px; animation: orbFloat 8s ease-in-out infinite; }
.gz-orb-bg span:nth-child(2) { width: 200px; height: 200px; background: rgba(6,182,212,0.2); bottom: 20px; left: -30px; animation: orbFloat 10s ease-in-out infinite reverse; }
.gz-orb-bg span:nth-child(3) { width: 160px; height: 160px; background: rgba(236,72,153,0.18); top: 40%; right: 40%; animation: orbFloat 12s ease-in-out infinite 2s; }

.gz-logo-wrap { margin-bottom: 1.5rem; position: relative; z-index: 1; }
.gz-logo-wrap img { width: 180px; }
.bento-gz h3 { position: relative; z-index: 1; font-size: 1.15rem; margin-bottom: 0.5rem; }
.bento-gz p { position: relative; z-index: 1; color: var(--muted); font-size: 0.88rem; line-height: 1.6; max-width: 360px; margin-bottom: 1.4rem; }
.bento-gz .bc-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.4rem; position: relative; z-index: 1; }
.bc-tag { font-size: 0.72rem; font-weight: 500; padding: 0.22rem 0.65rem; border-radius: 100px; background: var(--glass); color: var(--muted); border: 1px solid var(--border); white-space: nowrap; }
.bento-gz .bento-link { position: relative; z-index: 1; }

/* Badge inside card */
.bento-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.28rem 0.7rem; border-radius: 100px; margin-bottom: 1rem;
  position: relative; z-index: 1;
}
.badge-gz { background: var(--gz); color: #fff; }
.badge-she { background: rgba(249,168,196,0.18); color: var(--she-rose); border: 1px solid rgba(249,168,196,0.3); }
.badge-new { background: rgba(200,255,77,0.15); color: var(--lime); border: 1px solid rgba(200,255,77,0.3); }
.badge-b2b { background: rgba(6,182,212,0.12); color: var(--cyan); border: 1px solid rgba(6,182,212,0.25); }

/* SHEFit — tall right */
.bento-she {
  grid-column: 8 / 13; grid-row: 1;
  background: var(--she-dark);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2.5rem;
  position: relative;
}
.bento-she::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(249,168,196,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.she-logo-area {
  position: absolute; top: 0; left: 0; right: 0; bottom: 40%;
  display: flex; align-items: center; justify-content: center;
}
.she-logo-area img { width: 180px; filter: invert(1); opacity: 0.95; }
.bento-she h3 { position: relative; z-index: 1; margin-bottom: 0.5rem; }
.bento-she p { position: relative; z-index: 1; color: var(--muted); font-size: 0.88rem; line-height: 1.6; margin-bottom: 1.4rem; }
.bento-she .bc-tags { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.4rem; }
.bento-she .bento-link { position: relative; z-index: 1; }

/* KidsFashion & Right Size — row 2 */
.bento-kids {
  grid-column: 1 / 5; grid-row: 2;
  padding: 2rem;
  background: linear-gradient(135deg, #0A1A12, #0D2B1A);
}
.bento-kids:hover { box-shadow: 0 24px 60px rgba(52,211,153,0.15), 0 0 0 1px rgba(52,211,153,0.3); }

.bento-size {
  grid-column: 5 / 9; grid-row: 2;
  padding: 2rem;
  background: linear-gradient(135deg, #0A0E1A, #111929);
}
.bento-size:hover { box-shadow: 0 24px 60px rgba(6,182,212,0.15), 0 0 0 1px rgba(6,182,212,0.3); }

.bento-dress {
  grid-column: 9 / 13; grid-row: 2;
  padding: 2rem;
  background: linear-gradient(135deg, #1A0A18, #280D2A);
}
.bento-dress:hover { box-shadow: 0 24px 60px rgba(236,72,153,0.15), 0 0 0 1px rgba(236,72,153,0.3); }

/* Row 2 card internals */
.bento-sm-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
.bento-sm-date { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); margin-bottom: 0.5rem; display: block; }
.bento-sm h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 0.5rem; }
.bento-sm p { font-size: 0.84rem; color: var(--muted); line-height: 1.55; margin: 0; }

/* Bento link */
.bento-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.84rem; font-weight: 600; color: var(--text);
  padding: 0.55rem 1.1rem;
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 100px; transition: background 0.2s, border-color 0.2s, gap 0.2s;
}
.bento-link:hover { background: var(--glass-b); border-color: var(--border-h); gap: 0.6rem; }

/* ================================================
   EXPERTISE
   ================================================ */
.expertise-section { padding: clamp(5rem,10vw,9rem) 0; }
.expertise-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.exp-card {
  padding: 1.8rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease-out-expo);
  position: relative; overflow: hidden;
}
.exp-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(124,58,237,0.08), transparent 60%);
  opacity: 0; transition: opacity 0.3s ease;
}
.exp-card:hover { border-color: rgba(124,58,237,0.4); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(124,58,237,0.1); }
.exp-card:hover::before { opacity: 1; }
.exp-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; position: relative; z-index: 1; }
.exp-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; position: relative; z-index: 1; }
.exp-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; margin: 0; position: relative; z-index: 1; }

/* ================================================
   TIMELINE
   ================================================ */
.timeline-section { padding: clamp(5rem,10vw,9rem) 0; overflow: hidden; }

.tl-outer { position: relative; margin-top: 3.5rem; }
.tl-line {
  position: absolute; top: 22px; left: 0; right: 0; height: 1px;
  background: var(--border);
}
.tl-progress {
  position: absolute; top: 22px; left: 0; height: 1px;
  background: var(--gz); width: 0;
  transition: width 1.5s var(--ease-out-expo);
  box-shadow: 0 0 12px rgba(124,58,237,0.6);
}
.tl-items { display: grid; grid-template-columns: repeat(6,1fr); gap: 0; position: relative; z-index: 1; }
.tl-item { padding-right: 1rem; }
.tl-dot-wrap { margin-bottom: 1.5rem; }
.tl-dot {
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid var(--border); background: var(--bg);
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  position: relative; z-index: 1;
}
.tl-item:hover .tl-dot {
  border-color: var(--purple); background: var(--purple);
  box-shadow: 0 0 14px rgba(124,58,237,0.6);
}
.tl-year { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); margin-bottom: 0.6rem; }
.tl-item h4 { font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 700; margin-bottom: 0.35rem; color: var(--text); }
.tl-item p { font-size: 0.78rem; color: var(--muted); line-height: 1.55; margin: 0; }
.tl-now {
  display: inline-block; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.18rem 0.5rem; border-radius: 100px; background: var(--gz); color: #fff; margin-bottom: 0.4rem;
}

/* ================================================
   PROJECTS
   ================================================ */
.projects-section { padding: clamp(5rem,10vw,9rem) 0; }
.projects-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 1.2rem; }

.project-main {
  background: linear-gradient(145deg, #061525 0%, #0A2540 50%, #0F3560 100%);
  border-radius: var(--r-xl); padding: 2.8rem;
  position: relative; overflow: hidden;
  border: 1px solid rgba(6,182,212,0.15);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease-out-expo);
}
.project-main:hover { border-color: rgba(6,182,212,0.35); transform: translateY(-4px); box-shadow: 0 30px 60px rgba(6,182,212,0.15); }
.project-main::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.2), transparent 70%);
  pointer-events: none;
}
.live-pill { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 1.2rem; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ADE80; animation: pulseLive 2s ease-in-out infinite; }
@keyframes pulseLive { 0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74,222,128,0.5); } 50% { opacity: 0.6; box-shadow: 0 0 0 5px rgba(74,222,128,0); } }
.project-main h3 { font-size: clamp(1.6rem,2.5vw,2.2rem); margin-bottom: 0.8rem; }
.project-main p { color: rgba(255,255,255,0.72); font-size: 0.96rem; line-height: 1.7; margin-bottom: 1.8rem; }
.project-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.project-tag { font-size: 0.74rem; font-weight: 500; padding: 0.3rem 0.8rem; border-radius: 100px; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.15); }

.cities-col { display: flex; flex-direction: column; gap: 0.9rem; }
.cities-head { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); margin-bottom: 0.3rem; }
.cities-sub { font-size: 0.84rem; color: var(--muted); margin-bottom: 0.5rem; }
.city-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r);
  padding: 1.1rem 1.3rem; display: flex; align-items: center; gap: 1rem;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.city-card:hover { border-color: var(--border-h); background: var(--surface-2); transform: translateX(4px); }
.city-flag { font-size: 1.5rem; flex-shrink: 0; }
.city-info { flex: 1; }
.city-info h5 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.1rem; }
.city-info p { font-size: 0.78rem; color: var(--muted); margin: 0; }
.city-status {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.22rem 0.6rem; border-radius: 100px;
  background: var(--glass); color: var(--faint); border: 1px solid var(--border);
  white-space: nowrap;
}

/* ================================================
   CONTACT
   ================================================ */
.contact-section {
  padding: clamp(5rem,10vw,9rem) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.contact-text h2 { margin-bottom: 1rem; }
.contact-text p { color: var(--muted); font-size: 1rem; line-height: 1.7; margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.3rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: var(--glass); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.contact-item h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); margin-bottom: 0.25rem; }
.contact-item p, .contact-item a { font-size: 0.95rem; color: var(--text); margin: 0; }
.contact-item a:hover { color: var(--lime); }

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: #030308;
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand-row { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.7rem; }
.footer-mark { width: 28px; height: 28px; border-radius: 7px; background: var(--gz); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 800; color: #fff; }
.footer-name { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.95rem; }
.footer-tagline { font-size: 0.82rem; color: var(--faint); line-height: 1.6; max-width: 240px; }
.footer-col h5 { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a { font-size: 0.88rem; color: rgba(240,238,233,0.55); transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  padding-top: 2rem; border-top: 1px solid var(--border);
  font-size: 0.78rem; color: var(--faint);
}
.footer-bottom a { color: var(--faint); }
.footer-bottom a:hover { color: var(--muted); }
.footer-legal { display: flex; gap: 1.5rem; }

/* ================================================
   SCROLL REVEAL BASE
   ================================================ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out-expo), transform 0.65s var(--ease-out-expo);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1100px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-gz  { grid-column: 1 / 2; grid-row: 1; }
  .bento-she { grid-column: 2 / 3; grid-row: 1; }
  .bento-kids  { grid-column: 1 / 2; grid-row: 2; }
  .bento-size  { grid-column: 2 / 3; grid-row: 2; }
  .bento-dress { grid-column: 1 / 3; grid-row: 3; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photo-wrap { max-height: 440px; overflow: hidden; }
  .about-photo-wrap img { aspect-ratio: 16/9; object-position: center 30%; }
  .expertise-grid { grid-template-columns: repeat(2,1fr); }
  .tl-items { grid-template-columns: repeat(3,1fr); }
  .projects-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .bento { grid-template-columns: 1fr; }
  .bento-gz, .bento-she, .bento-kids, .bento-size, .bento-dress { grid-column: 1; grid-row: auto; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .expertise-grid { grid-template-columns: 1fr; }
  .tl-items { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .about-pillars { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .tl-items { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, .orb, .marquee-track, .logoSpin { animation: none !important; transition: duration 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
