*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
:root{
  --navy:#0b0f2e;
  --coral:#ff6b4a;
  --gold:#f9e337;
  --sky:#7ec8e3;
  --mint:#a8e6cf;
  --logo-color:#5b7fa6;
}
html{scroll-behavior:smooth;overflow-x:hidden;}
html.js-reveal .reveal{
  opacity:0;
  transform:translateY(20px);
  transition:opacity 0.8s cubic-bezier(.22,1,.36,1),transform 0.8s cubic-bezier(.22,1,.36,1);
  transition-delay:var(--reveal-delay,0ms);
}
html.js-reveal .reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}
html.js-reveal .reveal-fade{
  opacity:0;
  transition:opacity 0.9s cubic-bezier(.22,1,.36,1);
  transition-delay:var(--reveal-delay,0ms);
}
html.js-reveal .reveal-fade.is-visible{opacity:1;}
@media(prefers-reduced-motion:reduce){
  html.js-reveal .reveal,
  html.js-reveal .reveal-fade{
    opacity:1;
    transform:none;
    transition:none;
  }
}
body{
  font-family:'DM Sans',sans-serif;
  background:var(--navy);
  color:#fff;
  overflow-x:hidden;
  background-image:
    radial-gradient(ellipse at 15% 10%,#1e2560 0%,transparent 55%),
    radial-gradient(ellipse at 85% 90%,#1a1040 0%,transparent 55%);
}

/* Stars */
.sf{position:fixed;inset:0;pointer-events:none;z-index:0;overflow:hidden;}
.st{position:absolute;background:white;border-radius:50%;animation:tw var(--d,3s) ease-in-out infinite alternate;opacity:0;}
@keyframes tw{from{opacity:.08;}to{opacity:.7;}}

/* Nav */
nav{
  position:sticky;top:0;z-index:100;
  display:flex;align-items:center;justify-content:space-between;
  width:100%;
  padding:1.25rem 4rem;
  background:rgba(11,15,46,0.9);
  backdrop-filter:blur(16px);
  border-bottom:.5px solid rgba(255,255,255,0.07);
}
.nav-inner{
  display:flex;align-items:center;justify-content:space-between;
  width:960px;
  margin:0 auto;
}
.nav-logo{display:flex;align-items:center;text-decoration:none;perspective:800px;position:relative;z-index:1;}
.nav-logo::after{
  content:'';
  position:absolute;
  top:0;left:0;right:0;bottom:0;
  z-index:2;
}
.nav-logo-flip{
  position:relative;
  width:120px;
  height:50px;
  transform-style:preserve-3d;
  transform:rotateY(0) rotateX(0) scale(1);
}
.nav-logo.hovered .nav-logo-flip{
  animation:tf-flip 1s cubic-bezier(0.2,0.6,0.35,1) forwards;
}
.nav-logo.unhovered .nav-logo-flip{
  animation:tf-unflip 1s cubic-bezier(0.2,0.6,0.35,1) forwards;
}
@keyframes tf-flip{
  0%{transform:rotateY(0) rotateX(0) scale(1);}
  15%{transform:rotateY(0) rotateX(0) scale(0.85);}
  30%{transform:rotateY(90deg) rotateX(8deg) scale(0.75);}
  50%{transform:rotateY(90deg) rotateX(0) scale(0.8);}
  70%{transform:rotateY(180deg) rotateX(-5deg) scale(0.9);}
  85%{transform:rotateY(180deg) rotateX(2deg) scale(1.05);}
  100%{transform:rotateY(180deg) rotateX(0) scale(1);}
}
@keyframes tf-unflip{
  0%{transform:rotateY(180deg) rotateX(0) scale(1);}
  15%{transform:rotateY(180deg) rotateX(0) scale(0.85);}
  30%{transform:rotateY(90deg) rotateX(-8deg) scale(0.75);}
  50%{transform:rotateY(90deg) rotateX(0) scale(0.8);}
  70%{transform:rotateY(0) rotateX(5deg) scale(0.9);}
  85%{transform:rotateY(0) rotateX(-2deg) scale(1.05);}
  100%{transform:rotateY(0) rotateX(0) scale(1);}
}
.nav-logo-front,
.nav-logo-back{
  position:absolute;
  top:0;left:0;
  width:100%;height:100%;
  display:flex;align-items:center;
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
  transform-style:flat;
}
.nav-logo-back{
  transform:rotateY(180deg);
}
.nav-logo-img{width:120px;height:auto;display:block;}

.nav-links{display:flex;gap:2.5rem;list-style:none;}
.nav-links a{font-size:11px;letter-spacing:.18em;text-transform:uppercase;color:var(--sky);text-decoration:none;transition:color .2s;opacity:.7;}
.nav-links a:hover{color:white;opacity:1;}
.nav-back{font-size:11px;letter-spacing:.18em;text-transform:uppercase;color:rgba(255,255,255,0.3);text-decoration:none;transition:color .2s;}
.nav-back:hover{color:var(--gold);}

/* Hero */
.hero{position:relative;z-index:1;max-width:960px;width:100%;margin:0 auto;padding:8rem 4rem 6rem;}
.hero-shooting-stars{
  position:absolute;inset:0;
  pointer-events:none;z-index:0;
  overflow:hidden;
}
.shooting-star{
  position:absolute;
  width:2px;height:2px;
  border-radius:50%;
  background:rgba(255,255,255,0.85);
  box-shadow:0 0 4px 1px rgba(126,200,227,0.35);
  opacity:0;
  animation:hero-shoot var(--dur,0.9s) ease-out forwards;
}
.shooting-star::after{
  content:'';
  position:absolute;
  top:50%;left:-32px;
  width:32px;height:1px;
  transform:translateY(-50%);
  background:linear-gradient(90deg,transparent,rgba(126,200,227,0.15) 25%,rgba(255,255,255,0.45) 70%,rgba(255,255,255,0.75));
  border-radius:1px;
}
@keyframes hero-shoot{
  0%{opacity:0;transform:translate(0,0);}
  12%{opacity:0.75;}
  100%{opacity:0;transform:translate(var(--dx,-120px),var(--dy,72px));}
}
.hero-inner{position:relative;z-index:1;}
.hero-content{position:relative;z-index:1;}
.hero-visual{
  position:absolute;
  right:0;
  top:50%;
  width:clamp(168px,24vw,312px);
  transform:translateY(-50%);
  animation:hero-bounce 5s ease-in-out infinite;
  pointer-events:none;
  overflow:visible;
}
.hero-glow{
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  overflow:visible;
}
.hero-glow::before{
  content:'';
  position:absolute;
  left:50%;
  top:50%;
  width:145%;
  aspect-ratio:1;
  transform:translate(-50%,-50%);
  border-radius:50%;
  background:radial-gradient(circle,rgba(11,15,46,0.92) 0%,rgba(30,37,96,0.72) 28%,rgba(26,16,64,0.52) 48%,rgba(91,127,166,0.22) 66%,transparent 82%);
  filter:blur(32px);
}
.hero-glow::after{
  content:'';
  position:absolute;
  left:50%;
  top:50%;
  width:168%;
  aspect-ratio:1;
  transform:translate(-50%,-50%);
  border-radius:50%;
  background:radial-gradient(circle,transparent 38%,rgba(30,37,96,0.4) 56%,rgba(26,16,64,0.28) 70%,rgba(11,15,46,0.12) 82%,transparent 92%);
  filter:blur(36px);
}
.hero-img{
  position:relative;
  z-index:1;
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
  animation:hero-spin 90s linear infinite;
}
@keyframes hero-spin{
  from{transform:rotate(0deg);}
  to{transform:rotate(-360deg);}
}
@keyframes hero-bounce{
  0%,100%{transform:translateY(calc(-50% + 0px));}
  50%{transform:translateY(calc(-50% - 18px));}
}
@keyframes hero-bounce-mobile{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-14px);}
}
@media(prefers-reduced-motion:reduce){
  .hero-img{animation:none;}
  .hero-visual{animation:none;}
  .shooting-star{animation:none;opacity:0;}
}
@media(prefers-reduced-motion:reduce) and (min-width:769px){
  .hero-visual{transform:translateY(-50%);}
}
@media(prefers-reduced-motion:reduce) and (max-width:768px){
  .hero-visual{transform:none;animation:none;}
}
.eyebrow{font-size:10px;letter-spacing:.3em;text-transform:uppercase;color:var(--gold);margin-bottom:2rem;display:flex;align-items:center;gap:14px;}
.eyebrow::after{content:'';width:36px;height:.5px;background:var(--gold);opacity:.5;display:block;}
h1{font-family:'Fraunces',serif;font-weight:300;font-size:clamp(42px,6vw,76px);line-height:1.04;letter-spacing:-.025em;color:white;margin-bottom:1.75rem;max-width:820px;}
h1 em{font-style:italic;color:var(--gold);}
.hero-sub{font-family:'Fraunces',serif;font-style:italic;font-weight:300;font-size:20px;color:rgba(255,255,255,0.45);margin-bottom:3rem;}
.pill-row{display:flex;gap:10px;flex-wrap:wrap;}
.pill{font-size:10px;letter-spacing:.18em;text-transform:uppercase;padding:7px 16px;border-radius:30px;border:.5px solid;}
.p-coral{border-color:var(--coral);color:var(--coral);}
.p-sky{border-color:var(--sky);color:var(--sky);}
.p-gold{border-color:var(--gold);color:var(--gold);}
.p-mint{border-color:var(--mint);color:var(--mint);}

/* Section */
.section{position:relative;z-index:1;max-width:960px;width:100%;margin:0 auto;padding:5rem 4rem;}
.sec-label{font-size:10px;letter-spacing:.3em;text-transform:uppercase;color:rgba(255,255,255,.28);margin-bottom:3.5rem;display:flex;align-items:center;gap:14px;}
.sec-label::before{content:'';width:20px;height:.5px;background:rgba(255,255,255,.2);display:block;}

/* ===== BIO ===== */
.bio-top{
  display:grid;
  grid-template-columns:minmax(220px,32%) 1fr;
  gap:4rem;
  align-items:start;
}
.bio-divider{
  height:0;
  border:none;
  border-top:.5px solid rgba(255,255,255,0.06);
  margin:3.5rem 0;
}
.credit-grid{
  display:grid;
  grid-template-columns:repeat(8,minmax(0,1fr));
  gap:2rem 1.25rem;
  align-items:start;
}
.credit-item{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:0.85rem;
  min-width:0;
}
.credit-logo{
  color:var(--logo-color);
  width:100%;
  max-width:72px;
  height:32px;
  display:flex;
  align-items:center;
  filter:opacity(0.55);
  transition:filter .2s;
  flex-shrink:0;
}
.credit-logo svg,.credit-logo img{width:100%;height:100%;object-fit:contain;object-position:left center;}
.credit-item:hover .credit-logo{filter:opacity(0.85);}
.credit-text{
  font-size:12px;
  color:rgba(255,255,255,0.38);
  line-height:1.45;
  display:flex;
  flex-direction:column;
  gap:0.35rem;
}
.credit-text strong{
  color:rgba(255,255,255,.65);
  font-weight:500;
  display:block;
  font-size:11px;
  line-height:1.35;
}
.credit-detail{display:block;}
.credit-award{
  display:block;
  margin-top:0.15rem;
  font-size:9px;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:var(--gold);
  opacity:.8;
}

/* Bio text */
.bio-name{font-family:'Fraunces',serif;font-weight:700;font-size:30px;color:white;letter-spacing:-.02em;margin-bottom:.25rem;}
.bio-role{font-size:11px;letter-spacing:.22em;text-transform:uppercase;color:var(--gold);margin-bottom:2.25rem;}
.bio-text p{font-size:15px;line-height:1.85;color:rgba(255,255,255,.55);font-weight:300;margin-bottom:1.25rem;}
.bio-text p strong{color:rgba(255,255,255,.85);font-weight:500;}
.bio-text p em{font-style:italic;color:rgba(255,255,255,.75);}
.bio-text a{color:var(--sky);text-decoration:underline;text-decoration-color:rgba(126,200,227,0.3);text-underline-offset:3px;transition:color .2s,text-decoration-color .2s;}
.bio-text a:hover{color:#fff;text-decoration-color:rgba(255,255,255,0.5);}

/* ===== PROJECTS ===== */
.projects-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1.5rem;
  align-items:stretch;
}
.pcard{
  position:relative;
  border-radius:4px;
  overflow:hidden;
  border:.5px solid rgba(255,255,255,.08);
  cursor:default;
  display:flex;
  flex-direction:column;
}
.pcard .pcard-body{
  flex:1;
}
/* Image fills top portion */
.pcard-image{
  position:relative;
  width:100%;
  overflow:hidden;
}
.pcard.gogo .pcard-image{ height:400px; background:#0a0818; }
.pcard.pals .pcard-image{ height:400px; background:#0d0a1a; }
.pcard-image img{
  width:100%;height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
  transition:transform .7s cubic-bezier(.25,.46,.45,.94);
}
.pcard:hover .pcard-image img{ transform:scale(1.03); }

/* Gradient overlay on image bottom */
.pcard-image::after{
  content:'';
  position:absolute;inset:0;
  pointer-events:none;
}
.pcard.gogo .pcard-image::after{
  background:linear-gradient(
    to bottom,
    transparent 30%,
    rgba(11,15,46,0.15) 60%,
    rgba(11,15,46,0.75) 100%
  );
}
.pcard.pals .pcard-image::after{
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,0.1) 0%,
    rgba(11,15,46,0.2) 50%,
    rgba(11,15,46,0.85) 100%
  );
}

/* Badge floated top-left on image */
.pcard-badge{
  position:absolute;top:1.25rem;left:1.25rem;
  font-size:9px;letter-spacing:.2em;text-transform:uppercase;
  padding:5px 12px;border-radius:2px;
  backdrop-filter:blur(8px);
  z-index:2;
}
.gogo .pcard-badge{
  background:rgba(255,107,74,.2);color:var(--coral);
  border:.5px solid rgba(255,107,74,.35);
}
.pals .pcard-badge{
  background:rgba(126,200,227,.15);color:var(--sky);
  border:.5px solid rgba(126,200,227,.3);
}

/* Text sits below image */
.pcard-body{
  padding:1.75rem 2rem 2rem;
  background:rgba(255,255,255,0.02);
  border-top:.5px solid rgba(255,255,255,.06);
}
.pcard-title{
  font-family:'Fraunces',serif;font-weight:300;
  font-size:22px;color:white;line-height:1.2;
  letter-spacing:-.01em;margin-bottom:.4rem;
}
.pcard-title em{font-style:italic;}
.pcard-format{
  font-size:10px;letter-spacing:.15em;text-transform:uppercase;
  color:rgba(255,255,255,.25);margin-bottom:1.25rem;
}
.pcard-items{display:flex;flex-direction:column;gap:6px;}
.pcard-item a{color:var(--sky);text-decoration:underline;text-decoration-color:rgba(126,200,227,0.3);text-underline-offset:3px;transition:color .2s,text-decoration-color .2s;}
.pcard-item a:hover{color:#fff;text-decoration-color:rgba(255,255,255,0.5);}
.pcard-item{
  font-size:12px;color:rgba(255,255,255,.38);
  display:flex;align-items:flex-start;gap:10px;line-height:1.5;
}
.pcard-logline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1.25rem;
}
.gogo .pcard-logline {
  background: linear-gradient(90deg, #ff6b4a 0%, #c4a8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pals .pcard-logline {
  background: linear-gradient(90deg, #7ec8e3 0%, #c4a8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dot{width:3px;height:3px;border-radius:50%;flex-shrink:0;margin-top:6px;}
.gogo .dot{background:var(--coral);opacity:.8;}
.pals .dot{background:var(--sky);opacity:.8;}

/* ===== MEDIA ===== */
/* Globe feature */
.globe-feature{
  display:grid;grid-template-columns:1fr 1fr;
  gap:0;border:.5px solid rgba(255,255,255,.08);
  border-radius:4px;overflow:hidden;margin-bottom:2rem;
}
.globe-img{
  background:linear-gradient(135deg,rgba(255,107,74,.06),rgba(245,200,66,.04));
  display:flex;align-items:center;justify-content:center;
  padding:3rem 2rem;min-height:280px;
  border-right:.5px solid rgba(255,255,255,.06);
}
.globe-img img{width:100%;max-width:300px;object-fit:contain;filter:drop-shadow(0 8px 40px rgba(245,200,66,.15));}
.globe-text{padding:3rem;display:flex;flex-direction:column;justify-content:center;}
.globe-text h3{font-family:'Fraunces',serif;font-weight:300;font-style:italic;font-size:22px;color:white;margin-bottom:1rem;letter-spacing:-.01em;line-height:1.2;}
.globe-text p{font-size:13px;line-height:1.8;color:rgba(255,255,255,.42);font-weight:300;}

/* Press clip - media hosted here */
.press-feature{
  border:.5px solid rgba(255,255,255,.1);border-radius:4px;
  overflow:hidden;display:grid;grid-template-columns:340px 1fr;
}
.press-img{
  background:#0a0e28;
  border-right:.5px solid rgba(255,255,255,.07);
  overflow:hidden;position:relative;
}
.press-img img{width:100%;height:100%;object-fit:cover;object-position:top;filter:brightness(.95);}
.press-body{padding:2.5rem;display:flex;flex-direction:column;justify-content:center;gap:1rem;}
.press-kicker{font-size:10px;letter-spacing:.2em;text-transform:uppercase;color:rgba(255,255,255,.25);}
.press-hl{font-family:'Fraunces',serif;font-weight:700;font-size:20px;color:rgba(255,255,255,.82);line-height:1.3;letter-spacing:-.01em;}
.press-date{font-size:10px;letter-spacing:.15em;text-transform:uppercase;color:rgba(255,255,255,.2);}
.press-excerpt{font-size:13px;color:rgba(255,255,255,.38);line-height:1.75;font-weight:300;}
.press-link{
  display:inline-flex;align-items:center;gap:6px;
  font-size:11px;letter-spacing:.15em;text-transform:uppercase;
  color:var(--gold);text-decoration:none;margin-top:.5rem;
  border-bottom:.5px solid rgba(245,200,66,.3);padding-bottom:3px;
  width:fit-content;transition:border-color .2s;
}
.press-link:hover{border-color:var(--gold);}

/* ===== CONTACT ===== */
.contact-wrap{display:flex;gap:5rem;align-items:flex-start;justify-content:space-between;}
.contact-h{font-family:'Fraunces',serif;font-weight:300;font-size:clamp(32px,4vw,52px);color:white;line-height:1.05;letter-spacing:-.025em;margin-bottom:1.25rem;}
.contact-h em{font-style:italic;color:var(--gold);}
.contact-sub{font-size:14px;color:rgba(255,255,255,.38);line-height:1.7;max-width:340px;}
.contact-details{display:flex;flex-direction:column;gap:1.5rem;flex-shrink:0;}
.cfl{font-size:9px;letter-spacing:.28em;text-transform:uppercase;color:rgba(255,255,255,.22);margin-bottom:4px;}
.cfv{font-size:14px;color:rgba(255,255,255,.62);}
.cfv a{color:var(--gold);text-decoration:none;}
.markets{font-size:12px;color:rgba(255,255,255,.32);}

/* Footer */
footer{
  position:relative;z-index:1;
  border-top:.5px solid rgba(255,255,255,.05);
  padding:1.5rem 0;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  max-width:960px;
  width:100%;
  margin:0 auto;
  padding:0 4rem;
}
.social-links{
  display:flex;
  align-items:center;
  gap:2rem;
}
.social-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:10px;
  line-height:1;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.28);
  text-decoration:none;
  transition:color .2s;
}
.social-link:hover{color:rgba(255,255,255,0.7);}
.social-link svg{
  display:block;
  width:10px;
  height:10px;
  flex-shrink:0;
  stroke-width:1.25;
  transition:color .2s;
}
.f-back{font-size:10px;letter-spacing:.2em;text-transform:uppercase;color:rgba(255,255,255,.2);text-decoration:none;transition:color .2s;}
.f-back:hover{color:rgba(255,255,255,.5);}
.f-copy{font-size:10px;letter-spacing:.1em;color:rgba(255,255,255,0.28);}

@media only screen and (min-width:1180px){
  .nav-inner{width:1180px;}
  .hero,.section,.bio-band-inner,.media-inner,.footer-inner{max-width:1180px;}
}
@media only screen and (min-width:769px) and (max-width:959px){
  .nav-inner{width:768px;}
}
@media only screen and (max-width:768px){
  .nav-inner{width:auto;padding:0 1.5rem;}
  .hero,.section,.bio-band-inner,.media-inner,.footer-inner{padding-left:1.5rem;padding-right:1.5rem;}
}
@media only screen and (max-width:479px){
  .nav-inner{width:auto;padding:0 1rem;}
  .hero,.section,.bio-band-inner,.media-inner,.footer-inner{padding-left:1rem;padding-right:1rem;}
}

@media(max-width:768px){
  nav{
    padding:1rem 1.5rem;
    justify-content:center;
  }
  .nav-inner{
    justify-content:center;
  }
  .nav-links{display:none;}
  .hero,.section{padding:4rem 1.5rem;}
  .hero-inner{
    display:flex;
    flex-direction:column;
    align-items:center;
  }
  .hero-content{align-self:stretch;width:100%;}
  .hero{overflow:hidden;}
  .hero-visual{
    position:relative;
    left:auto;
    right:auto;
    top:auto;
    align-self:center;
    transform:none;
    width:92%;
    max-width:92%;
    margin:2.5rem 0 0;
    pointer-events:auto;
    overflow:visible;
    animation:hero-bounce-mobile 5s ease-in-out infinite;
  }
  .hero-glow{inset:0;}
  .hero-img{
    display:block;
    width:100%;
    margin:0 auto;
    object-position:center center;
    animation:hero-spin 90s linear infinite;
  }
  .projects-grid{grid-template-columns:1fr;}
  .globe-feature{grid-template-columns:1fr;}
  .globe-text{padding:1.5rem;}
  .press-feature{grid-template-columns:1fr;}
  .press-img{min-height:220px;}
  .contact-wrap{flex-direction:column;gap:2.5rem;}
  footer{padding:1.5rem 0;}
  .footer-inner{
    flex-direction:column;
    gap:1rem;
    text-align:center;
  }
  .social-links{
    justify-content:center;
  }
}

/* ===== WARM BIO BAND ===== */
.bio-band{
  position:relative;z-index:1;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(255,107,74,0.06) 0%, transparent 40%),
    radial-gradient(ellipse at 5% 90%, rgba(196,168,255,0.07) 0%, transparent 45%),
    radial-gradient(circle at top left, #2B183F 0%, #1B1D4A 45%, #0E1330 100%);
  width:100%;
  padding:6rem 0;
  border-top:.5px solid rgba(255,107,74,0.18);
  border-bottom:.5px solid rgba(43,24,63,0.9);
}
.bio-band-inner{
  max-width:960px;width:100%;margin:0 auto;padding:0 4rem;
}
.bio-band .sec-label{
  color:rgba(255,107,74,0.65);margin-bottom:3.5rem;
}
.bio-band .sec-label::before{
  background:rgba(255,107,74,0.4);
}
.bio-top{
  display:grid;
  grid-template-columns:minmax(240px,32%) 1fr;
  gap:4rem 5rem;
  align-items:start;
}
.bio-band .bio-divider{
  border-top-color:rgba(180,160,220,0.15);
  margin:3.5rem 0 3rem;
}
.bio-text p{
  font-size:15.5px;
}
.bio-photo-col{position:relative;}
.bio-photo-wrap{
  position:relative;
  border-radius:3px;
  overflow:hidden;
  aspect-ratio:3/4;
  max-width:280px;
  box-shadow:-10px 0 40px rgba(255,107,74,0.1), 0 0 60px rgba(43,24,63,0.6);
}
.bio-photo-wrap img{
  width:100%;height:100%;
  object-fit:cover;
  object-position:center top;
  display:block;
  filter:contrast(1.04) brightness(0.98) saturate(0.95);
}
.bio-photo-wrap::after{
  content:'';
  position:absolute;inset:0;
  background:linear-gradient(to bottom, transparent 60%, rgba(30,18,8,0.5) 100%);
  pointer-events:none;
}
.bio-photo-name{
  margin-top:1.25rem;
}
.bio-photo-name .bio-name{
  color:rgba(240,232,255,0.95);
  font-size:26px;
}
.bio-photo-name .bio-role{
  color:rgba(255,107,74,0.7);
}

/* Credits in warm band */
.bio-band .credit-item:hover .credit-logo{
  filter:opacity(1);
  color:#b0c4e8;
}
.bio-band .credit-logo{
  color:#8a9fd4;
  filter:opacity(0.6);
}
.bio-band .credit-text{
  color:rgba(200,210,240,0.38);
}
.bio-band .credit-text strong{
  color:rgba(225,230,255,0.75);
}
.bio-band .credit-award{color:var(--coral);opacity:.9;letter-spacing:.05em;}

/* Bio text in warm band */
.bio-band .bio-text p{
  color:rgba(200,210,240,0.52);
}
.bio-band .bio-text p strong{
  color:rgba(235,238,255,0.88);
}
.bio-band .bio-text p em{
  font-style:italic;
  color:rgba(196,168,255,0.85);
}

@media(max-width:1100px){
  .credit-grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:2.5rem 1.5rem;}
}
@media(max-width:900px){
  .bio-top{grid-template-columns:1fr;gap:2.5rem;}
  .bio-photo-col{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    width:100%;
  }
  .bio-photo-wrap{max-width:240px;margin:0 auto;}
  .bio-photo-name{width:100%;text-align:center;}
  .credit-grid{grid-template-columns:repeat(4,minmax(0,1fr));}
}
@media(max-width:768px){
  .bio-band{padding:4rem 0;}
  .bio-band-inner{padding:0 1.5rem;}
  .bio-top{grid-template-columns:1fr;gap:2rem;}
  .bio-photo-wrap{max-width:84%;width:84%;margin:0 auto;}
  .bio-divider{margin:2.5rem 0 2rem;}
  .credit-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:2rem 1.25rem;}
}


/* ===== MEDIA WHITE BAND ===== */
.media-white{
  position:relative;z-index:1;
  width:100%;
  padding:5rem 0;
  overflow:hidden;
  background:
    linear-gradient(175deg,#faf7f2 0%,#f3efe7 48%,#efe9df 100%);
  border-top:none;
}
.media-white::before{
  content:'';
  position:absolute;inset:-10% -5%;
  pointer-events:none;
  z-index:0;
  background:
    radial-gradient(ellipse 42% 38% at 8% 22%,rgba(126,200,227,0.22) 0%,transparent 72%),
    radial-gradient(ellipse 36% 32% at 92% 68%,rgba(255,107,74,0.14) 0%,transparent 70%),
    radial-gradient(ellipse 28% 24% at 72% 18%,rgba(245,200,66,0.12) 0%,transparent 68%),
    radial-gradient(ellipse 30% 26% at 22% 82%,rgba(168,230,207,0.14) 0%,transparent 70%),
    radial-gradient(ellipse 22% 20% at 48% 55%,rgba(196,168,255,0.08) 0%,transparent 75%);
  filter:blur(28px);
  opacity:0.85;
}
.media-white::after{
  content:'';
  position:absolute;inset:0;
  pointer-events:none;
  z-index:0;
  opacity:0.28;
  mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size:220px 220px;
}
.media-inner{
  position:relative;z-index:1;
  max-width:960px;
  width:100%;
  margin:0 auto;
  padding:0 4rem;
}
.media-white .sec-label{
  color:rgba(15,15,35,0.35);
  margin-bottom:3.5rem;
}
.media-white .sec-label::before{background:rgba(15,15,35,0.15);}
.media-white .globe-feature{
  position:relative;
  margin-bottom:0;
  overflow:hidden;
  border:none;
  border-radius:3px;
  background:rgba(255,251,246,0.88);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.75) inset,
    0 1px 2px rgba(14,19,48,0.04),
    0 10px 36px rgba(14,19,48,0.07);
}
.media-white .globe-feature::before{
  content:'';
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:0;
  background:
    radial-gradient(circle at 88% 12%,rgba(126,200,227,0.16) 0%,transparent 42%),
    radial-gradient(circle at 10% 88%,rgba(255,107,74,0.1) 0%,transparent 38%),
    linear-gradient(135deg,rgba(255,255,255,0.35) 0%,transparent 45%);
  opacity:0.9;
}
.media-white .globe-feature::after{
  content:'';
  position:absolute;inset:0;
  pointer-events:none;
  z-index:0;
  opacity:0.18;
  mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)' opacity='0.5'/%3E%3C/svg%3E");
  background-size:180px 180px;
}
.media-white .globe-img{
  position:relative;z-index:1;
  background:transparent;
  border-right:.5px solid rgba(14,19,48,0.06);
}
.media-white .globe-text{
  position:relative;z-index:1;
}
.media-white .globe-text h3{color:#0e1330;}
.media-white .globe-meta{
  font-size:11px;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:rgba(14,19,48,0.35);
  margin-bottom:1.25rem;
  margin-top:.35rem;
}
.media-white .globe-text p{color:rgba(14,19,48,0.5);}
.media-white .globe-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:1.75rem;
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#0e1330;
  border:.5px solid rgba(14,19,48,0.25);
  padding:10px 22px;
  border-radius:2px;
  text-decoration:none;
  background:transparent;
  font-family:'DM Sans',sans-serif;
  transition:background .2s,border-color .2s;
  width:fit-content;
}
.media-white .globe-link:hover{
  background:rgba(14,19,48,0.06);
  border-color:rgba(14,19,48,0.5);
}
@media(max-width:768px){
  .media-white{padding:4rem 0;}
  .media-inner{padding:0 1.5rem;}
}
