/* ============================================================
   MALIKA MANGLA — PORTFOLIO
   Palette: plum-black canvas, coral-pink / golden-yellow / soft-cyan
   Type: Fraunces (display) + Inter (body) + Space Grotesk (data/stats)
   ============================================================ */

:root{
  --bg:            #150E1A;
  --bg-panel:      #1E1424;
  --bg-panel-2:    #241831;
  --line:          rgba(251,243,236,0.10);
  --line-soft:     rgba(251,243,236,0.06);

  --text:          #FBF3EC;
  --text-muted:    #B9AEBE;
  --text-dim:      #8A7F91;

  --pink:          #FF6F91;
  --pink-soft:     #FFB4C6;
  --yellow:        #FFC145;
  --yellow-soft:   #FFDE9A;
  --cyan:          #5FD9D0;
  --cyan-soft:     #A8ECE5;

  --grad-hero: linear-gradient(135deg, #FF6F91 0%, #FFC145 52%, #5FD9D0 100%);

  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --font-data: 'Montserrat', sans-serif;

  --container: 1240px;
  --radius: 18px;
  --radius-sm: 10px;

  --ease: cubic-bezier(.16,.84,.44,1);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
html,body{ margin:0; padding:0; }

body{
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

::selection{ background: var(--pink); color: var(--bg); }

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

/* faint film-grain overlay for texture */
.grain{
  position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  opacity: 0.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   3D FLOATING SHAPES — inspired by uploaded illustrated-shapes theme
   Rendered in CSS (gradients + shadow) so no external art is reproduced
   ============================================================ */
.shape{ position:absolute; pointer-events:none; z-index:1; }
.shape-sphere{
  border-radius:50%;
  box-shadow: inset -12px -16px 34px rgba(0,0,0,0.4), 0 24px 60px -14px rgba(0,0,0,0.55);
  animation: shapeFloat 9s ease-in-out infinite;
}
.shape-sphere.pink{ background: radial-gradient(circle at 30% 26%, #FFD3DE 0%, var(--pink) 46%, #A83C57 100%); }
.shape-sphere.yellow{ background: radial-gradient(circle at 30% 26%, #FFF0C9 0%, var(--yellow) 46%, #B4842A 100%); }
.shape-sphere.cyan{ background: radial-gradient(circle at 30% 26%, #DFFBF7 0%, var(--cyan) 46%, #2E8981 100%); }

.shape-ring{
  border-radius:50%; border: 14px solid transparent; opacity:0.85;
  animation: shapeSpin 16s linear infinite;
}
.shape-ring.pink{ border-color: var(--pink); border-right-color: transparent; }
.shape-ring.cyan{ border-color: var(--cyan); border-bottom-color: transparent; }

.shape-blob{
  border-radius: 62% 38% 55% 45% / 45% 55% 42% 58%;
  filter: blur(0.5px);
  animation: shapeMorph 12s ease-in-out infinite;
}
.shape-blob.yellow{ background: linear-gradient(135deg, var(--yellow) 0%, #C7791E 100%); }
.shape-blob.pink{ background: linear-gradient(135deg, var(--pink) 0%, #9C3453 100%); }

@keyframes shapeFloat{ 0%,100%{ transform: translateY(0) translateX(0);} 50%{ transform: translateY(-22px) translateX(10px);} }
@keyframes shapeSpin{ from{ transform: rotate(0deg);} to{ transform: rotate(360deg);} }
@keyframes shapeMorph{
  0%,100%{ border-radius: 62% 38% 55% 45% / 45% 55% 42% 58%; transform: rotate(0deg); }
  50%{ border-radius: 42% 58% 38% 62% / 58% 42% 60% 40%; transform: rotate(12deg); }
}
@media (max-width: 780px){ .shape{ transform: scale(0.6); opacity:0.7; } }


.section-eyebrow{
  display:block; font-family: var(--font-data); font-size: 12.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 18px;
}
.section-title{
  font-family: var(--font-display); font-weight: 700; font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.08; letter-spacing: -0.01em; color: var(--text); margin: 0 0 34px;
}
.eyebrow{
  font-family: var(--font-data); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cyan-soft); margin: 0 0 22px;
}

/* scroll reveal */
.reveal{ opacity:0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in{ opacity:1; transform: translateY(0); }

/* buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding: 15px 30px; border-radius: 999px; font-family: var(--font-data); font-size: 14.5px;
  font-weight: 500; letter-spacing: 0.01em; transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
  border: 1px solid transparent; cursor:pointer;
}
.btn--primary{ background: var(--grad-hero); color: #1A1220; box-shadow: 0 8px 30px -8px rgba(255,111,145,0.55); }
.btn--primary:hover{ transform: translateY(-2px); box-shadow: 0 14px 36px -10px rgba(255,111,145,0.7); }
.btn--ghost{ border-color: var(--line); color: var(--text); }
.btn--ghost:hover{ border-color: var(--cyan); color: var(--cyan-soft); transform: translateY(-2px); }

/* ============================================================
   NAV
   ============================================================ */
.nav{
  position: fixed; top:0; left:0; right:0; z-index: 500;
  display:flex; align-items:center; justify-content: space-between;
  padding: 22px clamp(20px,5vw,64px);
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(21,14,26,0.75), rgba(21,14,26,0));
  transition: background .4s ease, padding .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled{ background: rgba(21,14,26,0.82); border-color: var(--line-soft); padding-top:14px; padding-bottom:14px; }
.nav__mark{
  font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: 0.02em;
  width: 42px; height:42px; border-radius: 50%; display:flex; align-items:center; justify-content:center;
  background: var(--grad-hero); color:#1A1220;
}
.nav__links{ display:flex; gap: 36px; font-family: var(--font-data); font-size: 14px; color: var(--text-muted); }
.nav__links a{ transition: color .3s ease; position:relative; }
.nav__links a:hover{ color: var(--text); }
.nav__cta{
  font-family: var(--font-data); font-size: 13.5px; padding: 10px 20px; border-radius: 999px;
  border: 1px solid var(--line); transition: all .3s ease;
}
.nav__cta:hover{ border-color: var(--pink); color: var(--pink-soft); }
.nav__burger{ display:none; background:none; border:none; width: 34px; height: 24px; position: relative; cursor:pointer; }
.nav__burger span{ position:absolute; left:0; right:0; height:2px; background: var(--text); border-radius: 2px; transition: all .3s ease; }
.nav__burger span:nth-child(1){ top:0; } .nav__burger span:nth-child(2){ top:11px; } .nav__burger span:nth-child(3){ top:22px; }
.nav__mobile{
  position:fixed; inset:0; z-index:480; background: var(--bg); display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:28px; font-family: var(--font-display); font-size: 28px;
  transform: translateY(-100%); transition: transform .5s var(--ease); opacity:0;
}
.nav__mobile.open{ transform: translateY(0); opacity:1; }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position: relative; min-height: 100svh; display:flex; flex-direction:column; align-items:center;
  justify-content:center; text-align:center; padding: 140px 20px 80px; overflow:hidden;
}
.hero::before{
  content:''; position:absolute; inset: -10% -10% auto -10%; height: 70%;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,111,145,0.16), transparent 60%);
  pointer-events:none;
}
.hero__inner{
  position:relative; z-index:5; max-width: 900px;
  background: radial-gradient(ellipse 620px 480px at 50% 45%, rgba(21,14,26,0.72) 0%, rgba(21,14,26,0.0) 72%);
  padding: 40px 20px;
}

.hero__orbit-field{
  position:absolute; inset:0; z-index:2; perspective: 1400px;
  display:flex; align-items:center; justify-content:center;
}
.orbit-ring{
  position:absolute; width: 620px; height:620px; transform-style: preserve-3d;
  animation: spin 46s linear infinite;
}
.orbit-ring.reverse{ animation-direction: reverse; animation-duration: 60s; }
@keyframes spin{ from{ transform: rotateY(0deg) rotateX(8deg);} to{ transform: rotateY(360deg) rotateX(8deg);} }

.orbit-card{
  position:absolute; top:50%; left:50%; width: 92px; height: 130px; margin:-65px 0 0 -46px;
  border-radius: 12px; overflow:hidden; box-shadow: 0 14px 40px -12px rgba(0,0,0,0.6);
  border: 1px solid rgba(251,243,236,0.14); background: var(--bg-panel);
  backface-visibility: hidden;
}
.orbit-card img{ width:100%; height:100%; object-fit:cover; display:block; opacity:0.5; filter: saturate(0.65) brightness(0.8); }

@media (max-width: 780px){
  .hero__orbit-field{ opacity:0.5; }
  .orbit-ring{ width: 380px; height: 380px; }
  .orbit-card{ width:64px; height:90px; margin:-45px 0 0 -32px; }
}

.hero__name{
  font-family: var(--font-display); font-weight: 800; font-size: clamp(52px, 11vw, 128px);
  line-height: 0.98; letter-spacing: -0.02em; margin: 0 0 26px; display:flex; flex-direction:column; gap:0;
  color: #FFFFFF;
}
.hero__name span{ display:block; }
.hero__name--merged{
  display:block; font-size: clamp(38px, 9vw, 108px);
  overflow-wrap: anywhere; word-break: break-word;
}
.hero__name--merged span{ display:inline; }
.hero__name-accent{
  font-style: italic; font-weight: 800;
  color: #FFFFFF;
}
.hero__tagline{
  font-size: clamp(16px, 1.7vw, 19px); color: var(--text-muted); max-width: 640px; margin: 0 auto 40px;
  font-weight: 400;
}
.hero__actions{ display:flex; gap: 16px; justify-content:center; margin-bottom: 70px; flex-wrap:wrap; }

.hero__stats{
  display:flex; gap: clamp(20px,4vw,56px); justify-content:center; flex-wrap:wrap;
  padding-top: 34px; border-top: 1px solid var(--line);
}
.hstat{ display:flex; flex-direction:column; align-items:center; gap:6px; }
.hstat__num{ font-family: var(--font-data); font-size: clamp(22px,2.6vw,30px); font-weight:600; color: var(--text); }
.hstat__label{ font-size: 12.5px; color: var(--text-dim); letter-spacing:0.02em; }

.hero__scroll{
  position:absolute; bottom: 34px; left:50%; transform: translateX(-50%); z-index:5;
  display:flex; flex-direction:column; align-items:center; gap:10px; font-family: var(--font-data);
  font-size: 11px; letter-spacing: 0.16em; text-transform:uppercase; color: var(--text-dim);
}
.hero__scroll span{
  width:1px; height: 34px; background: linear-gradient(to bottom, var(--pink), transparent);
  animation: scrollpulse 2s ease-in-out infinite;
}
@keyframes scrollpulse{ 0%,100%{ opacity:0.3;} 50%{ opacity:1;} }

/* ============================================================
   ABOUT
   ============================================================ */
.about{ max-width: var(--container); margin: 0 auto; padding: 140px 24px; }
.about__grid{ display:grid; grid-template-columns: 0.9fr 1.3fr; gap: 60px; }
.about__body p{ color: var(--text-muted); font-size: 17px; max-width: 620px; margin: 0 0 20px; }
.about__body strong{ color: var(--text); font-weight: 600; }
.about__targets{ display:flex; flex-wrap:wrap; gap: 10px; margin-top: 30px; }
.about__targets span{
  font-family: var(--font-data); font-size: 12.5px; padding: 8px 16px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--text-muted);
}
@media (max-width: 860px){ .about__grid{ grid-template-columns: 1fr; gap: 26px; } }

/* ============================================================
   EXPERIENCE / TIMELINE
   ============================================================ */
.experience{ max-width: var(--container); margin: 0 auto; padding: 60px 24px 140px; }
.timeline{ position:relative; margin-top: 50px; }
.timeline::before{ content:''; position:absolute; left: 11px; top:6px; bottom:6px; width:1px; background: var(--line); }
.tl-item{
  position:relative; padding-left: 46px; padding-bottom: 46px;
}
.tl-item:last-child{ padding-bottom:0; }
.tl-item::before{
  content:''; position:absolute; left:4px; top:6px; width:15px; height:15px; border-radius:50%;
  background: var(--bg); border: 2px solid var(--pink); z-index:2;
}
.tl-item__period{ font-family: var(--font-data); font-size:12.5px; color: var(--cyan-soft); letter-spacing:0.04em; margin-bottom:8px; display:block; }
.tl-item__role{ font-family: var(--font-display); font-size: clamp(20px,2.2vw,26px); font-weight:500; margin:0 0 4px; }
.tl-item__org{ font-size: 14.5px; color: var(--text-dim); margin: 0 0 14px; }
.tl-item__points{ margin:0; padding:0; list-style:none; display:flex; flex-direction:column; gap:9px; max-width: 680px; }
.tl-item__points li{ color: var(--text-muted); font-size:15px; padding-left:18px; position:relative; }
.tl-item__points li::before{ content:''; position:absolute; left:0; top:9px; width:5px; height:5px; border-radius:50%; background: var(--yellow); }

/* ============================================================
   RESULTS / CASE STUDIES
   ============================================================ */
.results{ position:relative; max-width: var(--container); margin:0 auto; padding: 60px 24px 100px; }
.case-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 46px; }
.case-card{
  background: var(--bg-panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transform-style: preserve-3d; transition: transform .25s ease, border-color .35s ease, background .35s ease;
  will-change: transform;
}
.case-card:hover{ border-color: var(--line); background: var(--bg-panel-2); }
.case-card__tag{ font-family: var(--font-data); font-size:11.5px; letter-spacing:0.1em; text-transform:uppercase; color: var(--text-dim); }
.case-card__name{ font-family: var(--font-display); font-weight:600; font-size:26px; margin: 8px 0 22px; }
.case-metric{ display:flex; align-items:baseline; justify-content:space-between; padding: 12px 0; border-top:1px solid var(--line-soft); gap:10px; }
.case-metric:first-of-type{ border-top:none; }
.case-metric__label{ font-size:13px; color: var(--text-dim); flex-shrink:0; }
.case-metric__vals{ font-family: var(--font-data); font-size:14.5px; text-align:right; }
.case-metric__from{ color: var(--text-dim); text-decoration: line-through; text-decoration-color: rgba(185,174,190,0.4); margin-right:8px; font-size:13px; }
.case-metric__to{ color: var(--cyan-soft); font-weight:600; }

.stat-strip{ display:grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 60px; }
.stat-card{
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 24px 20px; text-align:center;
  transition: border-color .3s ease, transform .3s ease;
}
.stat-card:hover{ transform: translateY(-4px); }
.stat-card:nth-child(4n+1){ border-color: rgba(255,111,145,0.35); }
.stat-card:nth-child(4n+2){ border-color: rgba(255,193,69,0.35); }
.stat-card:nth-child(4n+3){ border-color: rgba(95,217,208,0.35); }
.stat-card:nth-child(4n+4){ border-color: rgba(255,111,145,0.35); }
.stat-card__num{ display:block; font-family: var(--font-data); font-size: 30px; font-weight:700; margin-bottom:8px; background: var(--grad-hero); -webkit-background-clip:text; background-clip:text; color:transparent; }
.stat-card__label{ font-size: 13px; color: var(--text-muted); }
.stat-card__name{ display:block; font-family: var(--font-display); font-style:italic; font-weight:600; font-size:15px; color: var(--text-dim); margin-top:6px; }

@media (max-width: 900px){ .case-grid{ grid-template-columns:1fr; } .stat-strip{ grid-template-columns: repeat(2,1fr); } }

/* ============================================================
   BRANDS WORKED WITH
   ============================================================ */
.brands{ position:relative; max-width: var(--container); margin:0 auto; padding: 60px 24px 120px; }
.brand-wall{
  display:grid; grid-template-columns: repeat(6, 1fr); gap: 18px; margin-top: 40px;
}
.brand-logo-card{
  aspect-ratio: 1.4/1; border-radius: 18px; display:flex; align-items:center; justify-content:center;
  padding: 20px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s ease, background .35s ease;
  background: linear-gradient(160deg, rgba(251,243,236,0.92), rgba(251,243,236,0.82));
  border: 1px solid rgba(251,243,236,0.14);
  box-shadow: 0 10px 30px -14px rgba(0,0,0,0.55);
}
.brand-logo-card:hover{
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 18px 40px -14px rgba(255,111,145,0.35);
  border-color: var(--pink-soft);
  background: linear-gradient(160deg, rgba(251,243,236,0.98), rgba(255,222,154,0.18), rgba(251,243,236,0.9));
}
.brand-logo-card img{ max-width: 100%; max-height: 100%; object-fit: contain; }
@media (max-width: 900px){ .brand-wall{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px){ .brand-wall{ grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   CATEGORY TABS (UGC / Influencer / Social / Website)
   ============================================================ */
.category-tabs{ display:flex; flex-wrap:wrap; gap:12px; margin-bottom: 44px; }
.category-tab{
  font-family: var(--font-data); font-weight:600; font-size: 14.5px; padding: 13px 26px; border-radius:999px;
  border: 1px solid var(--line); color: var(--text-muted); cursor:pointer; transition: all .3s ease; background:none;
}
.category-tab:hover{ color: var(--text); border-color: var(--text-dim); }
.category-tab.active{ background: var(--grad-hero); color: #1A1220; border-color: transparent; }

.category-panel{ display:none; }
.category-panel.active{ display:block; animation: fadein .5s ease; }

.category-panel__empty{
  border: 1px dashed var(--line); border-radius: var(--radius); padding: 70px 30px; text-align:center;
}
.category-panel__empty-title{ font-family: var(--font-display); font-weight:600; font-size:22px; margin: 0 0 10px; }
.category-panel__empty-sub{ color: var(--text-dim); font-size: 14.5px; }

/* ---------- UGC panel ---------- */
.ugc-featured{
  font-family: var(--font-data); font-size: 13.5px; color: var(--text-dim); margin: 0 0 26px;
}
.ugc-featured strong{ color: var(--cyan-soft); font-weight: 600; }

/* ---------- Creatives panel ---------- */
.creative-grid{
  display:grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px;
}
.creative-card{
  position:relative; border-radius: 14px; overflow:hidden; cursor:pointer; border: 1px solid var(--line);
  background: var(--bg-panel); transition: transform .35s var(--ease), border-color .35s ease, box-shadow .35s ease;
  display:flex; flex-direction:column;
}
.creative-card:hover{ transform: translateY(-4px); border-color: rgba(251,243,236,0.28); box-shadow: 0 16px 34px -16px rgba(0,0,0,0.55); }
.creative-card__media{ position:relative; width:100%; aspect-ratio: 4/3; overflow:hidden; background: var(--bg-panel-2); }
.creative-card__media img{ width:100%; height:100%; display:block; object-fit: cover; transition: transform .5s var(--ease); }
.creative-card:hover .creative-card__media img{ transform: scale(1.05); }
.creative-card__zoom{
  position:absolute; top:12px; right:12px; width:32px; height:32px; border-radius:50%;
  background: rgba(21,14,26,0.55); backdrop-filter: blur(4px); border: 1px solid rgba(251,243,236,0.22);
  display:flex; align-items:center; justify-content:center; opacity:0; transform: scale(0.85);
  transition: opacity .3s ease, transform .3s ease;
}
.creative-card:hover .creative-card__zoom{ opacity:1; transform: scale(1); }
.creative-card__zoom svg{ width:15px; height:15px; stroke: var(--text); }
.creative-card__label{
  padding: 12px 14px; font-family: var(--font-data); font-size: 12.5px; color: var(--text-muted);
  border-top: 1px solid var(--line-soft);
}

/* ---------- Websites panel ---------- */
.website-grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 26px; }
.website-card{
  border-radius: var(--radius); overflow:hidden; border: 1px solid var(--line); background: var(--bg-panel);
  transition: transform .35s var(--ease), border-color .35s ease;
}
.website-card:hover{ transform: translateY(-5px); border-color: rgba(251,243,236,0.26); }
.website-card__frame{
  padding: 12px 14px 0; background: var(--bg-panel-2);
}
.website-card__dots{ display:flex; gap:6px; margin-bottom:10px; }
.website-card__dots span{ width:9px; height:9px; border-radius:50%; background: var(--line); }
.website-card__bar{
  display:flex; align-items:center; gap:8px; background: var(--bg); border-radius: 8px 8px 0 0;
  padding: 8px 14px; font-family: var(--font-data); font-size: 11.5px; color: var(--text-dim);
}
.website-card__screen{
  width:100%; height: 190px; object-fit: cover; object-position: top; display:block;
}
.website-card__body{ padding: 22px 24px 26px; }
.website-card__name{ font-family: var(--font-display); font-weight:600; font-size: 20px; margin: 0 0 8px; }
.website-card__desc{ color: var(--text-muted); font-size: 13.5px; margin: 0 0 18px; }
.website-card__link{
  display:inline-flex; align-items:center; gap:8px; font-family: var(--font-data); font-size: 13px; font-weight:600;
  color: var(--cyan-soft); border-bottom: 1px solid rgba(95,217,208,0.4); padding-bottom:2px;
}

/* ============================================================
   WORK / GALLERY
   ============================================================ */
.work{ position:relative; max-width: var(--container); margin: 0 auto; padding: 60px 24px 140px; }
.work__intro{ color: var(--text-muted); max-width:560px; margin: -14px 0 44px; }

.brand-tabs{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom: 40px; }
.brand-tab{
  font-family: var(--font-data); font-size: 13.5px; padding: 10px 20px; border-radius:999px;
  border: 1px solid var(--line); color: var(--text-muted); cursor:pointer; transition: all .3s ease; background:none;
}
.brand-tab:hover{ color: var(--text); border-color: var(--text-dim); }
.brand-tab.active{ background: var(--text); color: var(--bg); border-color: var(--text); }

.brand-panel{ display:none; }
.brand-panel.active{ display:block; animation: fadein .5s ease; }
@keyframes fadein{ from{ opacity:0; transform: translateY(10px);} to{ opacity:1; transform: translateY(0);} }

.brand-panel__head{ display:flex; justify-content:space-between; align-items:flex-end; gap: 20px; margin-bottom: 26px; flex-wrap:wrap; }
.brand-panel__name{ font-family: var(--font-display); font-weight:600; font-size: 28px; margin:0 0 6px; }
.brand-panel__tag{ font-family: var(--font-data); font-size:12.5px; color: var(--text-dim); letter-spacing:0.04em; text-transform:uppercase; }
.brand-panel__blurb{ color: var(--text-muted); max-width:520px; font-size:14.5px; text-align:right; }
@media (max-width:700px){ .brand-panel__blurb{ text-align:left; } }

.reel-grid{
  display:grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px;
  perspective: 1000px;
}
.reel-card{
  position:relative; aspect-ratio: 9/13; border-radius: 14px; overflow:hidden; cursor:pointer;
  border: 1px solid var(--line); background: var(--bg-panel); transform-style: preserve-3d;
  transition: transform .35s var(--ease), border-color .35s ease, box-shadow .35s ease;
}
.reel-card:hover{ border-color: rgba(251,243,236,0.28); box-shadow: 0 20px 40px -16px rgba(0,0,0,0.6); }
.reel-card img{ width:100%; height:100%; object-fit:cover; display:block; transition: transform .5s ease, filter .5s ease; }
.reel-card:hover img{ transform: scale(1.06); filter: brightness(0.75); }
.reel-card__play{
  position:absolute; top:50%; left:50%; width:44px; height:44px; margin:-22px 0 0 -22px; border-radius:50%;
  background: rgba(251,243,236,0.92); display:flex; align-items:center; justify-content:center;
  opacity:0; transform: scale(0.7); transition: all .3s ease;
}
.reel-card:hover .reel-card__play{ opacity:1; transform: scale(1); }
.reel-card__play::before{ content:''; border-style:solid; border-width:7px 0 7px 12px; border-color: transparent transparent transparent #1A1220; margin-left:3px; }
.reel-card__handle{
  position:absolute; left:10px; bottom:10px; right:10px; font-family: var(--font-data); font-size:12px;
  color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.8); font-weight:500;
}

/* ============================================================
   CONNECT / FOOTER
   ============================================================ */
.connect{ position:relative; padding: 140px 24px 60px; overflow:hidden; }
.connect::before{
  content:''; position:absolute; inset:0; background: radial-gradient(ellipse at 50% 100%, rgba(95,217,208,0.14), transparent 60%);
  pointer-events:none;
}
.connect__inner{ position:relative; max-width: var(--container); margin:0 auto; text-align:center; }
.connect__title{ font-family: var(--font-display); font-weight:700; font-size: clamp(30px,4.6vw,52px); line-height:1.12; margin: 0 0 46px; }
.connect__row{ display:flex; flex-direction:column; align-items:center; gap:18px; margin-bottom: 70px; }
.connect__email{
  font-family: var(--font-data); font-size: clamp(20px,2.6vw,28px); font-weight:600;
  background: var(--grad-hero); -webkit-background-clip:text; background-clip:text; color:transparent;
  padding-bottom: 6px; border-bottom: 1px solid var(--line);
}
.connect__meta{ display:flex; gap: 22px; flex-wrap:wrap; justify-content:center; color: var(--text-dim); font-size:14px; }

.connect__education{ display:grid; grid-template-columns: repeat(2,1fr); gap: 14px; text-align:left; max-width: 840px; margin: 0 auto; }
.edu-item{ border-top:1px solid var(--line-soft); padding-top:14px; }
.edu-item__school{ font-family: var(--font-display); font-size:15.5px; margin-bottom:4px; }
.edu-item__program{ font-size:13px; color: var(--text-dim); }
@media (max-width:700px){ .connect__education{ grid-template-columns:1fr; } }

.connect__bottom{
  display:flex; justify-content:space-between; margin-top: 80px; padding-top: 26px; border-top:1px solid var(--line);
  font-family: var(--font-data); font-size:12px; color: var(--text-dim); flex-wrap:wrap; gap:10px;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox{ position:fixed; inset:0; z-index:1000; display:none; align-items:center; justify-content:center; padding: 30px; }
.lightbox.open{ display:flex; }
.lightbox__backdrop{ position:absolute; inset:0; background: rgba(10,7,12,0.92); backdrop-filter: blur(6px); }
.lightbox__panel{ position:relative; z-index:2; max-width: 640px; width:100%; animation: pop .35s var(--ease); }
.lightbox__panel:has(video[style*="block"]){ max-width: 420px; }
@keyframes pop{ from{ opacity:0; transform: scale(0.94) translateY(10px);} to{ opacity:1; transform: scale(1) translateY(0);} }
.lightbox__panel video{ width:100%; max-height: 78vh; border-radius: 16px; background:#000; display:block; }
.lightbox__panel img{ width:100%; max-height: 78vh; object-fit:contain; border-radius: 16px; background:#000; display:block; }
.lightbox__close{
  position:absolute; top:-46px; right:0; background:none; border:none; color: var(--text); font-size: 32px;
  cursor:pointer; line-height:1; opacity:0.8; transition: opacity .2s ease;
}
.lightbox__close:hover{ opacity:1; }
.lightbox__meta{ display:flex; justify-content:space-between; margin-top:14px; font-family: var(--font-data); font-size:13px; color: var(--text-muted); }
.lightbox__meta span:last-child{ color: var(--pink-soft); }

/* ============================================================
   RESPONSIVE — NAV
   ============================================================ */
@media (max-width: 860px){
  .nav__links{ display:none; }
  .nav__cta{ display:none; }
  .nav__burger{ display:block; }
}
